Merge pull request #1003 from pooler/httpsverinfo

Retrieve version information using HTTPS
This commit is contained in:
ThomasV 2015-02-03 09:50:46 +01:00
commit 1609d6607f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class VersionGetter(threading.Thread):
def run(self):
try:
con = httplib.HTTPConnection('electrum.org', 80, timeout=5)
con = httplib.HTTPSConnection('electrum.org', timeout=5)
con.request("GET", "/version")
res = con.getresponse()
except socket.error as msg: