aboutsummaryrefslogtreecommitdiffstats
path: root/examples/urls.py
diff options
context:
space:
mode:
authorTom Christie2011-01-28 09:14:04 +0000
committerTom Christie2011-01-28 09:14:04 +0000
commit2e9fd9c6b93a77dcf5caa42a4d71b9da2021693f (patch)
tree22f9d6e6e6dba501ee1aadecadf324d39524dad4 /examples/urls.py
parent8e8547ff9a0a77f39f0ec46dcc0772706ff9371f (diff)
downloaddjango-rest-framework-2e9fd9c6b93a77dcf5caa42a4d71b9da2021693f.tar.bz2
Minor fixups on pygments example
Diffstat (limited to 'examples/urls.py')
-rw-r--r--examples/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/urls.py b/examples/urls.py
index 5e308f00..b1dec13d 100644
--- a/examples/urls.py
+++ b/examples/urls.py
@@ -4,7 +4,7 @@ from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
- (r'pygments-example/', include('pygments_api.urls')),
+ (r'^pygments-example/', include('pygments_api.urls')),
(r'^blog-post-example/', include('blogpost.urls')),
(r'^object-store-example/', include('objectstore.urls')),
(r'^accounts/login/$', 'django.contrib.auth.views.login'),