You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi There,
would it be possible to add this line of code within the "rest_framework_social_oauth2/urls.py" file. This helps with Django4.0 and would also work with the older version.
Replace
from django.conf.urls import url, include
To
from django.conf.urls import include
try:
from django.conf.urls import url
except ImportError:
from django.urls import re_path as url
The text was updated successfully, but these errors were encountered:
vigneshwrn9
changed the title
Quick fix to
Quick fix to enable this package to work with Django 4 and the older versions
Jul 21, 2022
Hi There,
would it be possible to add this line of code within the "rest_framework_social_oauth2/urls.py" file. This helps with Django4.0 and would also work with the older version.
Replace
To
The text was updated successfully, but these errors were encountered: