aboutsummaryrefslogtreecommitdiffstats
path: root/examples/resourceexample/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/resourceexample/urls.py')
-rw-r--r--examples/resourceexample/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/resourceexample/urls.py b/examples/resourceexample/urls.py
index 452cc92b..6e141f3c 100644
--- a/examples/resourceexample/urls.py
+++ b/examples/resourceexample/urls.py
@@ -2,6 +2,6 @@ from django.conf.urls.defaults import patterns, url
from resourceexample.views import ExampleView, AnotherExampleView
urlpatterns = patterns('',
- url(r'^$', ExampleView.as_view(), name='example'),
+ url(r'^$', ExampleView.as_view(), name='example-resource'),
url(r'^(?P<num>[0-9]+)/$', AnotherExampleView.as_view(), name='another-example'),
)