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.
1 parent f6106f6 commit b8e22d3Copy full SHA for b8e22d3
django_lightweight_queue/urls.py
@@ -1,9 +1,9 @@
1
-from django.conf.urls import url
+from django.urls import re_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'),
+ re_path(r'^debug/django-lightweight-queue/debug-run$', views.debug_run, name='debug-run'),
9
)
0 commit comments