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 = ''
while not stopping:
d = conn.recv(1024)
msg += d
try:
d = conn.recv(1024)
except socket.error:
d = ''
if not d:
close_session(session_id)
break
msg += d
while True:
s = msg.find('\n')
if s ==-1: