interface: don't show traceback on error 104

This commit is contained in:
ThomasV 2015-02-21 14:45:09 +01:00
parent 9874afac8b
commit b3364b87d1
1 changed files with 4 additions and 2 deletions

View File

@ -266,8 +266,10 @@ class TcpInterface(threading.Thread):
return
print_error("wrong certificate", self.host)
return
except BaseException:
print_error("wrap_socket failed", self.host)
except BaseException, e:
print_error(self.host, e)
if e.errno == 104:
return
traceback.print_exc(file=sys.stderr)
return