Fixed bug in django.contrib.comments urlconf

git-svn-id: http://code.djangoproject.com/svn/django/trunk@29 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-07-14 18:32:59 +00:00
parent 0bc849ff89
commit f98724e57a
1 changed files with 1 additions and 1 deletions

View File

@ -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'),