summaryrefslogtreecommitdiff
path: root/tests/oauth1/rfc5849/test_signatures.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/oauth1/rfc5849/test_signatures.py')
-rw-r--r--tests/oauth1/rfc5849/test_signatures.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/oauth1/rfc5849/test_signatures.py b/tests/oauth1/rfc5849/test_signatures.py
index 4eb7ff3..48a17c4 100644
--- a/tests/oauth1/rfc5849/test_signatures.py
+++ b/tests/oauth1/rfc5849/test_signatures.py
@@ -11,13 +11,10 @@ from oauthlib.oauth1.rfc5849.signature import (collect_parameters,
sign_plaintext_with_client,
sign_rsa_sha1,
sign_rsa_sha1_with_client)
+from urllib.parse import quote
from ...unittest import TestCase
-try:
- from urllib import quote
-except ImportError:
- from urllib.parse import quote