Skip to content

Commit b8e22d3

Browse files
committed
fix django 4 regression
1 parent f6106f6 commit b8e22d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django_lightweight_queue/urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from django.conf.urls import url
1+
from django.urls import re_path
22

33
from . import views
44

55
app_name = 'django_lightweight_queue'
66

77
urlpatterns = (
8-
url(r'^debug/django-lightweight-queue/debug-run$', views.debug_run, name='debug-run'),
8+
re_path(r'^debug/django-lightweight-queue/debug-run$', views.debug_run, name='debug-run'),
99
)

0 commit comments

Comments
 (0)