import urllib.parse when using urllib.parse.quote (#7319)

This commit is contained in:
Andrew Morgan 2020-04-22 12:18:51 +01:00 committed by GitHub
parent 336989a57f
commit ff5604e7f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/7319.misc Normal file
View File

@ -0,0 +1 @@
Fix an incorrect import in IdentityHandler.

View File

@ -18,7 +18,7 @@
"""Utilities for interacting with Identity Servers""" """Utilities for interacting with Identity Servers"""
import logging import logging
import urllib import urllib.parse
from canonicaljson import json from canonicaljson import json
from signedjson.key import decode_verify_key_bytes from signedjson.key import decode_verify_key_bytes