]> code.delx.au - offlineimap/commitdiff
Removed "print af" statements from imaplib.py
authorJohn Goerzen <jgoerzen@complete.org>
Wed, 28 Mar 2007 20:38:37 +0000 (21:38 +0100)
committerJohn Goerzen <jgoerzen@complete.org>
Wed, 28 Mar 2007 20:38:37 +0000 (21:38 +0100)
they were introduced by patch "Check all resolved addresses [deb #413030]"
and were screwing up the curses display.

refs deb#413030

offlineimap/imaplib.py

index d70819e700b66202c6d3a105a7bb114b3b3923c4..e00d9bf62b382603228cad7b8036bf14027451e3 100644 (file)
@@ -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: