summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-14 18:32:59 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-14 18:32:59 +0000
commitf98724e57ae739b3a5677684d61d72899307c302 (patch)
tree40602ae3c2f437ed451a22f54479554ebb56cd56
parent0bc849ff89bc7cbc4e9133df297de3542240a21a (diff)
Fixed bug in django.contrib.comments urlconf
git-svn-id: http://code.djangoproject.com/svn/django/trunk@29 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 f117e8924a..f8c6cb060d 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.views',
+urlpatterns = patterns('django.contrib.comments.views',
(r'^post/$', 'comments.comments.post_comment'),
(r'^postfree/$', 'comments.comments.post_free_comment'),
(r'^posted/$', 'comments.comments.comment_was_posted'),