aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simpleexample/urls.py
diff options
context:
space:
mode:
authortom christie tom@tomchristie.com2011-01-31 08:41:21 +0000
committertom christie tom@tomchristie.com2011-01-31 08:41:21 +0000
commit9024c2e94e27aa7a40882e9beae62e0502fc2677 (patch)
tree1ceb676de4cec7c4112c1888f8d64b05a8d7960b /examples/simpleexample/urls.py
parent42f2f9b40d1295e18a5b720b0d1f6ad85e928d8a (diff)
downloaddjango-rest-framework-9024c2e94e27aa7a40882e9beae62e0502fc2677.tar.bz2
Going live
Diffstat (limited to 'examples/simpleexample/urls.py')
-rw-r--r--examples/simpleexample/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/simpleexample/urls.py b/examples/simpleexample/urls.py
index d853ba5a..92e782dc 100644
--- a/examples/simpleexample/urls.py
+++ b/examples/simpleexample/urls.py
@@ -1,6 +1,6 @@
from django.conf.urls.defaults import patterns, url
urlpatterns = patterns('simpleexample.views',
- url(r'^$', 'MyModelRootResource'),
+ url(r'^$', 'MyModelRootResource'),
url(r'^([0-9]+)/$', 'MyModelResource'),
)