mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-01-04 16:50:47 -05:00
The new parameter to urlopen is "context" not "ctx"
This commit is contained in:
parent
ced39d019f
commit
fd4fa9097f
@ -52,7 +52,7 @@ def request_registration(user, password, server_location, shared_secret):
|
|||||||
if sys.version_info[:3] >= (2, 7, 9):
|
if sys.version_info[:3] >= (2, 7, 9):
|
||||||
# As of version 2.7.9, urllib2 now checks SSL certs
|
# As of version 2.7.9, urllib2 now checks SSL certs
|
||||||
import ssl
|
import ssl
|
||||||
f = urllib2.urlopen(req, ctx=ssl.SSLContext(ssl.PROTOCOL_SSLv23))
|
f = urllib2.urlopen(req, context=ssl.SSLContext(ssl.PROTOCOL_SSLv23))
|
||||||
else:
|
else:
|
||||||
f = urllib2.urlopen(req)
|
f = urllib2.urlopen(req)
|
||||||
f.read()
|
f.read()
|
||||||
|
Loading…
Reference in New Issue
Block a user