]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix smtpd.py I accidentally broke in my previous commit
authorGiampaolo Rodolà <g.rodola@gmail.com>
Sat, 21 Aug 2010 18:58:21 +0000 (18:58 +0000)
committerGiampaolo Rodolà <g.rodola@gmail.com>
Sat, 21 Aug 2010 18:58:21 +0000 (18:58 +0000)
Lib/smtpd.py

index bd764cc51f409c21d9f79d8d05fad2c1a79ecc7a..b4082786fa147b7771238f4d5e3b5578bfa0fff5 100755 (executable)
@@ -413,7 +413,7 @@ class SMTPServer(asyncore.dispatcher):
                 self.__class__.__name__, time.ctime(time.time()),
                 localaddr, remoteaddr), file=DEBUGSTREAM)
 
-    def handle_accept(self)
+    def handle_accept(self):
         conn, addr = self.accept()
         print('Incoming connection from %s' % repr(addr), file=DEBUGSTREAM)
         channel = self.channel_class(self, conn, addr)