Merge branch 'master' of git://gitorious.org/electrum/electrum

This commit is contained in:
thomasv 2012-03-15 14:00:40 +01:00
commit 6bc08df9ab
1 changed files with 5 additions and 2 deletions

View File

@ -693,12 +693,15 @@ def tcp_client_thread(ipaddr,conn):
msg = '' msg = ''
while not stopping: while not stopping:
d = conn.recv(1024) try:
msg += d d = conn.recv(1024)
except socket.error:
d = ''
if not d: if not d:
close_session(session_id) close_session(session_id)
break break
msg += d
while True: while True:
s = msg.find('\n') s = msg.find('\n')
if s ==-1: if s ==-1: