Skip to content

Commit 7142929

Browse files
authored
Merge branch 'master' into py39
2 parents 9b0aef2 + 1b2d73d commit 7142929

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/urls.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
from django.conf.urls import include, url
21
from django.contrib import admin
2+
from django.urls import include, path
33

44

55
admin.autodiscover()
66

77

88
urlpatterns = [
9-
url(r"^o/", include("oauth2_provider.urls", namespace="oauth2_provider")),
9+
path("o/", include("oauth2_provider.urls", namespace="oauth2_provider")),
1010
]
1111

1212

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

0 commit comments

Comments
 (0)