Removed "print af" statements from imaplib.py
they were introduced by patch "Check all resolved addresses [deb #413030]" and were screwing up the curses display. refs deb#413030
This commit is contained in:
parent
aca2a4458b
commit
799c867a4d
@ -230,7 +230,6 @@ class IMAP4:
|
||||
af, socktype, proto, canonname, sa = remote
|
||||
self.sock = socket.socket(af, socktype, proto)
|
||||
last_error = self.sock.connect_ex(sa)
|
||||
print af
|
||||
if last_error == 0:
|
||||
break
|
||||
else:
|
||||
@ -1152,7 +1151,6 @@ class IMAP4_SSL(IMAP4):
|
||||
af, socktype, proto, canonname, sa = remote
|
||||
self.sock = socket.socket(af, socktype, proto)
|
||||
last_error = self.sock.connect_ex(sa)
|
||||
print af
|
||||
if last_error == 0:
|
||||
break
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user