Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 522180a

Browse files
committed
fix smtpd.py I accidentally broke in my previous commit
1 parent 5fe9cd5 commit 522180a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/smtpd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def __init__(self, localaddr, remoteaddr):
413413
self.__class__.__name__, time.ctime(time.time()),
414414
localaddr, remoteaddr), file=DEBUGSTREAM)
415415

416-
def handle_accept(self)
416+
def handle_accept(self):
417417
conn, addr = self.accept()
418418
print('Incoming connection from %s' % repr(addr), file=DEBUGSTREAM)
419419
channel = self.channel_class(self, conn, addr)

0 commit comments

Comments
 (0)