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
The url() function was removed in Django's 4.0 release. Old documentation states it was an alias for django.urls.re_path(), but the empty string route doesn't require regex, so django.urls.path() would suffice here:
https://python-social-auth.readthedocs.io/en/latest/configuration/django.html#urls-entries
The
url()
function was removed in Django's 4.0 release. Old documentation states it was an alias fordjango.urls.re_path()
, but the empty string route doesn't require regex, sodjango.urls.path()
would suffice here:The text was updated successfully, but these errors were encountered: