diff options
| author | Tom Christie | 2011-12-29 13:31:12 +0000 |
|---|---|---|
| committer | Tom Christie | 2011-12-29 13:31:12 +0000 |
| commit | 07349597ab936dc9887caa70b5d7d2860c897b12 (patch) | |
| tree | db1fdb8934e4d8dc8d3afe8d1e9fd076e3a4e27d /examples/objectstore/urls.py | |
| parent | 1bdc5eacc6290c486796eb5ab8fa29092137dab6 (diff) | |
| download | django-rest-framework-07349597ab936dc9887caa70b5d7d2860c897b12.tar.bz2 | |
whitespace fixes
Diffstat (limited to 'examples/objectstore/urls.py')
| -rw-r--r-- | examples/objectstore/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/objectstore/urls.py b/examples/objectstore/urls.py index 2c685f59..0a3effa7 100644 --- a/examples/objectstore/urls.py +++ b/examples/objectstore/urls.py @@ -1,7 +1,7 @@ from django.conf.urls.defaults import patterns, url from objectstore.views import ObjectStoreRoot, StoredObject - + urlpatterns = patterns('objectstore.views', - url(r'^$', ObjectStoreRoot.as_view(), name='object-store-root'), + url(r'^$', ObjectStoreRoot.as_view(), name='object-store-root'), url(r'^(?P<key>[A-Za-z0-9_-]{1,64})/$', StoredObject.as_view(), name='stored-object'), ) |
