aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/urls.py
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-03-04 11:52:52 -0800
committerbnewbold <bnewbold@manus.(none)>2007-03-04 11:52:52 -0800
commit41ebadb1e755d3af3f69ec07ee8f08096ff8f3cd (patch)
tree621274d7c91e0cc2ac3be9a7f06ad13639afb071 /bn_django/urls.py
parent6b56fa9f477ac65440cb10428aac93b1ed68b5eb (diff)
downloadbnewnet-41ebadb1e755d3af3f69ec07ee8f08096ff8f3cd.tar.gz
bnewnet-41ebadb1e755d3af3f69ec07ee8f08096ff8f3cd.zip
fixed missing comma in urls list
Diffstat (limited to 'bn_django/urls.py')
-rw-r--r--bn_django/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bn_django/urls.py b/bn_django/urls.py
index 9ccf0a3..2d833be 100644
--- a/bn_django/urls.py
+++ b/bn_django/urls.py
@@ -23,6 +23,7 @@ urlpatterns = patterns('',
# Uncomment this for admin:
(r'^admin/', include('django.contrib.admin.urls')),
+ (r'^comments/', include('django.contrib.comments.urls.comments')),
(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': '/home/bnewbold/bn-project/static', 'show_indexes': True}),
(r'^style/(?P<path>.*)$', 'django.views.static.serve', {'document_root': '/home/bnewbold/bn-project/static/style'}),