summary refs log tree commit diff
path: root/synapse/http/matrixfederationclient.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-04-30 00:33:05 +0100
committerGitHub <noreply@github.com>2018-04-30 00:33:05 +0100
commit9e2601f830cbd518e838fb2ef7bd75c873e9af94 (patch)
treea9c1b32c021bd63c578f057870774dda4bef124a /synapse/http/matrixfederationclient.py
parentMerge pull request #3127 from matrix-org/rav/deferred_timeout (diff)
parentUse six.moves.urlparse (diff)
downloadsynapse-9e2601f830cbd518e838fb2ef7bd75c873e9af94.tar.xz
Merge pull request #3108 from NotAFile/py3-six-urlparse
Use six.moves.urlparse
Diffstat (limited to 'synapse/http/matrixfederationclient.py')
-rw-r--r--synapse/http/matrixfederationclient.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/http/matrixfederationclient.py b/synapse/http/matrixfederationclient.py
index 30036fe81c..4b2b85464d 100644
--- a/synapse/http/matrixfederationclient.py
+++ b/synapse/http/matrixfederationclient.py
@@ -41,8 +41,7 @@ import logging
 import random
 import sys
 import urllib
-import urlparse
-
+from six.moves.urllib import parse as urlparse
 
 logger = logging.getLogger(__name__)
 outbound_logger = logging.getLogger("synapse.http.outbound")