summary refs log tree commit diff
path: root/register_new_matrix_user
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-04-17 16:08:42 +0100
committerErik Johnston <erik@matrix.org>2015-04-17 16:08:42 +0100
commit2492efb162c90c67f26ee5de26499610f23a6c2c (patch)
tree150a7e6dd22b4c0556f500753d84ed5c25efb108 /register_new_matrix_user
parentUpdate --database-path metavar to SQLITE_DATABASE_PATH (diff)
parentMerge branch 'master' of github.com:matrix-org/synapse into develop (diff)
downloadsynapse-2492efb162c90c67f26ee5de26499610f23a6c2c.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into postgres
Diffstat (limited to 'register_new_matrix_user')
-rwxr-xr-xregister_new_matrix_user7
1 files changed, 6 insertions, 1 deletions
diff --git a/register_new_matrix_user b/register_new_matrix_user
index daddadc302..4a520bdb5d 100755
--- a/register_new_matrix_user
+++ b/register_new_matrix_user
@@ -49,7 +49,12 @@ def request_registration(user, password, server_location, shared_secret):
         headers={'Content-Type': 'application/json'}
     )
     try:
-        f = urllib2.urlopen(req)
+        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, context=ssl.SSLContext(ssl.PROTOCOL_SSLv23))
+        else:
+            f = urllib2.urlopen(req)
         f.read()
         f.close()
         print "Success."