add sockettimeout to header download by HTTP

This commit is contained in:
Eagle[TM] 2012-12-19 09:41:23 +01:00
parent a9181a38f2
commit 12cc65abbd
1 changed files with 2 additions and 1 deletions

View File

@ -298,7 +298,8 @@ class WalletVerifier(threading.Thread):
return
try:
import urllib
import urllib, socket
socket.setdefaulttimeout(30)
print_error("downloading ", self.headers_url )
urllib.urlretrieve(self.headers_url, filename)
except: