aboutsummaryrefslogtreecommitdiffstats
path: root/examples/resourceexample/urls.py
diff options
context:
space:
mode:
authortom christie tom@tomchristie.com2011-02-01 23:07:55 +0000
committertom christie tom@tomchristie.com2011-02-01 23:07:55 +0000
commit4e156328752a19f6251a166de4f8a2de0b45da7d (patch)
treee2660a7778b15a8af83bb10e039595a027b90990 /examples/resourceexample/urls.py
parent3a8facdb2a75688eb9b3dde72e7bcfe58adcae9c (diff)
downloaddjango-rest-framework-4e156328752a19f6251a166de4f8a2de0b45da7d.tar.bz2
Updated resourceexample with seperate form.py
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 01cc7c62..828caef2 100644
--- a/examples/resourceexample/urls.py
+++ b/examples/resourceexample/urls.py
@@ -1,6 +1,6 @@
from django.conf.urls.defaults import patterns, url
urlpatterns = patterns('resourceexample.views',
- url(r'^$', 'ExampleResource'),
+ url(r'^$', 'ExampleResource'),
url(r'^(?P<num>[0-9]+)/$', 'AnotherExampleResource'),
)