diff options
| author | chriscauley <chris@lablackey.com> | 2014-04-14 14:12:44 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-04-16 20:36:29 -0400 |
| commit | 66ec9ee441618894c1ccebdcdd5eb4d7fbf4a6d3 (patch) | |
| tree | 956a7d4f6e3b1c348505a3f2d23c7813c6c362b8 /tests/test_utils | |
| parent | 030dd4f72ca4d84c0a5e09ee625123d03651fdd1 (diff) | |
Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests.
Thanks tomwys for the suggestion.
Diffstat (limited to 'tests/test_utils')
| -rw-r--r-- | tests/test_utils/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
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), ] |
