[Python-checkins] r84238 - python/branches/py3k/Lib/smtpd.py

giampaolo.rodola python-checkins at python.org
Sat Aug 21 20:58:21 CEST 2010


Author: giampaolo.rodola
Date: Sat Aug 21 20:58:21 2010
New Revision: 84238

Log:
fix smtpd.py I accidentally broke in my previous commit

Modified:
   python/branches/py3k/Lib/smtpd.py

Modified: python/branches/py3k/Lib/smtpd.py
==============================================================================
--- python/branches/py3k/Lib/smtpd.py	(original)
+++ python/branches/py3k/Lib/smtpd.py	Sat Aug 21 20:58:21 2010
@@ -413,7 +413,7 @@
                 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)


More information about the Python-checkins mailing list