mirror of
https://github.com/Hopiu/django.git
synced 2026-04-27 02:04:49 +00:00
Fixed invalid escape sequence warning in check_framework test.
This commit is contained in:
parent
967450a3bf
commit
532a4f22ad
1 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
from django.urls import path
|
||||
|
||||
urlpatterns = [
|
||||
path('(?P<named-group>\d+)', lambda x: x),
|
||||
path(r'(?P<named-group>\d+)', lambda x: x),
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue