diff options
author | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-08-21 18:58:21 (GMT) |
---|---|---|
committer | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-08-21 18:58:21 (GMT) |
commit | 522180a60bf4ae10615c0acd3a9906d42538768c (patch) | |
tree | 0a3ad888fbb1e5b22dfb1427cda3d2a1018e42f9 /Lib/smtpd.py | |
parent | 5fe9cd53b2cd38c1098b4176f1273998153f7e65 (diff) | |
download | cpython-522180a60bf4ae10615c0acd3a9906d42538768c.zip cpython-522180a60bf4ae10615c0acd3a9906d42538768c.tar.gz cpython-522180a60bf4ae10615c0acd3a9906d42538768c.tar.bz2 |
fix smtpd.py I accidentally broke in my previous commit
Diffstat (limited to 'Lib/smtpd.py')
-rwxr-xr-x | Lib/smtpd.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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) |