fix
authorThomasV <thomasv@gitorious>
Wed, 2 Oct 2013 01:33:45 +0000 (03:33 +0200)
committerThomasV <thomasv@gitorious>
Wed, 2 Oct 2013 01:33:45 +0000 (03:33 +0200)
lib/interface.py

index de3963f..b8a7ad7 100644 (file)
@@ -308,9 +308,8 @@ class Interface(threading.Thread):
                                     do_handshake_on_connect=True)
             except ssl.SSLError, e:
                 print_error("SSL error:", self.host, e)
-
                 # delete the certificate so we will download a new one
-                if is_new and e.errno == 1:
+                if is_new:
                     os.unlink(cert_path)
                 return
             except: