Skip to content

Commit b7d7162

Browse files
committed
convert from re_path to path
1 parent b8e22d3 commit b7d7162

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.urls import re_path
1+
from django.urls import path
22

33
from . import views
44

55
app_name = 'django_lightweight_queue'
66

77
urlpatterns = (
8-
re_path(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)