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 b8e22d3 commit b7d7162Copy full SHA for b7d7162
django_lightweight_queue/urls.py
@@ -1,9 +1,9 @@
1
-from django.urls import re_path
+from django.urls import path
2
3
from . import views
4
5
app_name = 'django_lightweight_queue'
6
7
urlpatterns = (
8
- re_path(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