try to fix ticket 148. has some problems: it wont display the accounts with erros in the accounts window. Only after you close it and open it again
This commit is contained in:
parent
7c6f9f9499
commit
c9df9a7ece
|
@ -465,7 +465,10 @@ class Client(Stream):
|
||||||
if self._proxy: self._sock.connect((self._proxy['host'], self._proxy['port']))
|
if self._proxy: self._sock.connect((self._proxy['host'], self._proxy['port']))
|
||||||
else: self._sock.connect((self._hostIP, self._port))
|
else: self._sock.connect((self._hostIP, self._port))
|
||||||
except socket.error, e:
|
except socket.error, e:
|
||||||
self.DEBUG("socket error: "+str(e),DBG_CONN_ERROR)
|
self.DEBUG("socket error: "+str(e), DBG_CONN_ERROR)
|
||||||
|
raise
|
||||||
|
except socket.gaierror, e:
|
||||||
|
self.DEBUG("socket error: "+str(e), DBG_CONN_ERROR)
|
||||||
raise
|
raise
|
||||||
|
|
||||||
if self._connection == TCP_SSL:
|
if self._connection == TCP_SSL:
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 423 B After Width: | Height: | Size: 574 B |
Loading…
Reference in New Issue