diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-03-04 11:52:52 -0800 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-03-04 11:52:52 -0800 |
commit | 41ebadb1e755d3af3f69ec07ee8f08096ff8f3cd (patch) | |
tree | 621274d7c91e0cc2ac3be9a7f06ad13639afb071 | |
parent | 6b56fa9f477ac65440cb10428aac93b1ed68b5eb (diff) | |
download | bnewnet-41ebadb1e755d3af3f69ec07ee8f08096ff8f3cd.tar.gz bnewnet-41ebadb1e755d3af3f69ec07ee8f08096ff8f3cd.zip |
fixed missing comma in urls list
-rw-r--r-- | bn_django/urls.py | 1 |
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'}), |