Author: russellm
Date: 2008-08-28 06:27:17 -0500 (Thu, 28 Aug 2008)
New Revision: 8650
Modified:
django/trunk/docs/topics/http/urls.txt
Log:
Fixed #8600: Corrected example URLConf to match new comments framework. Thanks
to julien for the report.
Modified: django/trunk/docs/topics/http/urls.txt
===================================================================
--- django/trunk/docs/topics/http/urls.txt 2008-08-28 07:18:28 UTC (rev
8649)
+++ django/trunk/docs/topics/http/urls.txt 2008-08-28 11:27:17 UTC (rev
8650)
@@ -382,7 +382,7 @@
urlpatterns = patterns('',
(r'^weblog/', include('django_website.apps.blog.urls.blog')),
(r'^documentation/', include('django_website.apps.docs.urls.docs')),
- (r'^comments/', include('django.contrib.comments.urls.comments')),
+ (r'^comments/', include('django.contrib.comments.urls')),
)
Note that the regular expressions in this example don't have a ``$``
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---