From 41ebadb1e755d3af3f69ec07ee8f08096ff8f3cd Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 4 Mar 2007 11:52:52 -0800 Subject: fixed missing comma in urls list --- bn_django/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bn_django') 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.*)$', 'django.views.static.serve', {'document_root': '/home/bnewbold/bn-project/static', 'show_indexes': True}), (r'^style/(?P.*)$', 'django.views.static.serve', {'document_root': '/home/bnewbold/bn-project/static/style'}), -- cgit v1.2.3