summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-14 18:37:10 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-14 18:37:10 +0000
commitfda1f68492146e5d50c2a80d4ca7a365592df93e (patch)
tree1dd437a027eb5633905e6294b5184f6572101206
parentd9d6345e3ff1ac1638a3682310116715d6d3e120 (diff)
Fixed bug in [29]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@31 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/comments/urls/comments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/comments/urls/comments.py b/django/contrib/comments/urls/comments.py
index c260550a8d..bbb4c435b6 100644
--- a/django/contrib/comments/urls/comments.py
+++ b/django/contrib/comments/urls/comments.py
@@ -1,6 +1,6 @@
from django.conf.urls.defaults import *
-urlpatterns = patterns('django.contrib.comments.comments',
+urlpatterns = patterns('django.contrib.comments.views',
(r'^post/$', 'comments.post_comment'),
(r'^postfree/$', 'comments.post_free_comment'),
(r'^posted/$', 'comments.comment_was_posted'),