commit | 522180a60bf4ae10615c0acd3a9906d42538768c | [log] [tgz] |
---|---|---|
author | Giampaolo RodolĂ <g.rodola@gmail.com> | Sat Aug 21 18:58:21 2010 +0000 |
committer | Giampaolo RodolĂ <g.rodola@gmail.com> | Sat Aug 21 18:58:21 2010 +0000 |
tree | 0a3ad888fbb1e5b22dfb1427cda3d2a1018e42f9 | |
parent | 5fe9cd53b2cd38c1098b4176f1273998153f7e65 [diff] [blame] |
fix smtpd.py I accidentally broke in my previous commit
diff --git a/Lib/smtpd.py b/Lib/smtpd.py index bd764cc..b408278 100755 --- a/Lib/smtpd.py +++ b/Lib/smtpd.py
@@ -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)