diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-04-22 12:18:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 12:18:51 +0100 |
commit | ff5604e7f17893d26a8eb3abdf894c4d5a07dbf3 (patch) | |
tree | 9283f982383a133699adad6c59fa4a2b06d52c38 /synapse/handlers | |
parent | Reduce federation logging on success (#7321) (diff) | |
download | synapse-ff5604e7f17893d26a8eb3abdf894c4d5a07dbf3.tar.xz |
import urllib.parse when using urllib.parse.quote (#7319)
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/identity.py | 2 |
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 |