We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98fb952 + b7d7162 commit a6428d8Copy full SHA for a6428d8
django_lightweight_queue/urls.py
@@ -1,9 +1,9 @@
1
-from django.conf.urls import url
+from django.urls import path
2
3
from . import views
4
5
app_name = 'django_lightweight_queue'
6
7
urlpatterns = (
8
- url(r'^debug/django-lightweight-queue/debug-run$', views.debug_run, name='debug-run'),
+ path(r'debug/django-lightweight-queue/debug-run', views.debug_run, name='debug-run'),
9
)
0 commit comments