From 66ec9ee441618894c1ccebdcdd5eb4d7fbf4a6d3 Mon Sep 17 00:00:00 2001 From: chriscauley Date: Mon, 14 Apr 2014 14:12:44 -0400 Subject: Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests. Thanks tomwys for the suggestion. --- tests/test_utils/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_utils') diff --git a/tests/test_utils/urls.py b/tests/test_utils/urls.py index 4aade3d572..4193cabf91 100644 --- a/tests/test_utils/urls.py +++ b/tests/test_utils/urls.py @@ -4,6 +4,6 @@ from . import views urlpatterns = [ - url(r'^test_utils/get_person/(\d+)/$', views.get_person), + url(r'^test_utils/get_person/([0-9]+)/$', views.get_person), url(r'^test_utils/no_template_used/$', views.no_template_used), ] -- cgit v1.3