summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2020-04-22 12:18:51 +0100
committerGitHub <noreply@github.com>2020-04-22 12:18:51 +0100
commitff5604e7f17893d26a8eb3abdf894c4d5a07dbf3 (patch)
tree9283f982383a133699adad6c59fa4a2b06d52c38 /synapse
parentReduce federation logging on success (#7321) (diff)
downloadsynapse-ff5604e7f17893d26a8eb3abdf894c4d5a07dbf3.tar.xz
import urllib.parse when using urllib.parse.quote (#7319)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/handlers/identity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/identity.py b/synapse/handlers/identity.py
index 23f07832e7..0f0e632b62 100644
--- a/synapse/handlers/identity.py
+++ b/synapse/handlers/identity.py
@@ -18,7 +18,7 @@
 """Utilities for interacting with Identity Servers"""
 
 import logging
-import urllib
+import urllib.parse
 
 from canonicaljson import json
 from signedjson.key import decode_verify_key_bytes