[CHANGE] Django Upgrade checks applied

This commit is contained in:
Peter Pfeufer
2023-08-01 12:51:58 +02:00
parent b2d540c010
commit 7075ccdf7a
22 changed files with 63 additions and 48 deletions

View File

@@ -1,9 +1,8 @@
from django.conf.urls import include
from allianceauth import urls
from django.urls import re_path
from django.urls import include, path
urlpatterns = [
re_path(r'', include(urls)),
path('', include(urls)),
]
handler500 = 'allianceauth.views.Generic500Redirect'