version_getter: catch all exceptions

This commit is contained in:
ThomasV 2015-06-10 17:50:02 +02:00
parent 060e3aa23e
commit bcde416331
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class VersionGetter(threading.Thread):
def run(self):
try:
res = requests.request("GET", "https://electrum.org/version")
except socket.error as msg:
except:
print_error("Could not retrieve version information")
return