django-rest-framework-social-oauth2 icon indicating copy to clipboard operation
django-rest-framework-social-oauth2 copied to clipboard

Fixbug Fixing "urls" to support Django 4, older versions Fixes #254

Open islam-kamel opened this issue 2 years ago • 0 comments

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

islam-kamel avatar Sep 17 '22 08:09 islam-kamel