Skip to content

Commit

Permalink
Merge branch 'master' into py39
Browse files Browse the repository at this point in the history
  • Loading branch information
Asif Saif Uddin authored Oct 12, 2020
2 parents 9b0aef2 + 1b2d73d commit 7142929
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/urls.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from django.conf.urls import include, url
from django.contrib import admin
from django.urls import include, path


admin.autodiscover()


urlpatterns = [
url(r"^o/", include("oauth2_provider.urls", namespace="oauth2_provider")),
path("o/", include("oauth2_provider.urls", namespace="oauth2_provider")),
]


urlpatterns += [url(r"^admin/", admin.site.urls)]
urlpatterns += [path("admin/", admin.site.urls)]

0 comments on commit 7142929

Please sign in to comment.