Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit ff5604e

Browse files
import urllib.parse when using urllib.parse.quote (#7319)
1 parent 336989a commit ff5604e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

changelog.d/7319.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix an incorrect import in IdentityHandler.

synapse/handlers/identity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"""Utilities for interacting with Identity Servers"""
1919

2020
import logging
21-
import urllib
21+
import urllib.parse
2222

2323
from canonicaljson import json
2424
from signedjson.key import decode_verify_key_bytes

0 commit comments

Comments
 (0)