From 99611af158a32e46efe85cfd0e02326ff5889c84 Mon Sep 17 00:00:00 2001 From: Artyom Vancyan <44609997+ArtyomVancyan@users.noreply.github.com> Date: Wed, 12 Jul 2023 20:31:30 +0400 Subject: [PATCH] Fix the ImportError occuring on urllib --- social_core/backends/nk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/social_core/backends/nk.py b/social_core/backends/nk.py index a5dfe1475..0b0e0d2b6 100644 --- a/social_core/backends/nk.py +++ b/social_core/backends/nk.py @@ -1,4 +1,4 @@ -from urllib import urlencode +from urllib.parse import urlencode from requests_oauthlib import OAuth1