The new parameter to urlopen is "context" not "ctx"

pull/124/head
Mark Haines 2015-04-17 14:44:31 +01:00
parent ced39d019f
commit fd4fa9097f
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ def request_registration(user, password, server_location, shared_secret):
if sys.version_info[:3] >= (2, 7, 9):
# As of version 2.7.9, urllib2 now checks SSL certs
import ssl
f = urllib2.urlopen(req, ctx=ssl.SSLContext(ssl.PROTOCOL_SSLv23))
f = urllib2.urlopen(req, context=ssl.SSLContext(ssl.PROTOCOL_SSLv23))
else:
f = urllib2.urlopen(req)
f.read()