Skip to content

Commit a6428d8

Browse files
committed
Merge remote-tracking branch 'itsthejoker/django-4-regression'
2 parents 98fb952 + b7d7162 commit a6428d8

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 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+
path(r'debug/django-lightweight-queue/debug-run', views.debug_run, name='debug-run'),
99
)

0 commit comments

Comments
 (0)