From 522180a60bf4ae10615c0acd3a9906d42538768c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Giampaolo=20Rodol=C3=A0?= Date: Sat, 21 Aug 2010 18:58:21 +0000 Subject: [PATCH] fix smtpd.py I accidentally broke in my previous commit --- Lib/smtpd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/smtpd.py b/Lib/smtpd.py index bd764cc51f..b4082786fa 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) -- 2.40.0