diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-28 11:27:17 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-28 11:27:17 +0000 |
| commit | f1ab8b4342cb04974f43b0d583e1a22ef75213ab (patch) | |
| tree | 35f53c96797b9460028b930436a7207548d6c66f /docs | |
| parent | a0dd9ecdd8145f07dfdd804b9a80b4e59d964bd3 (diff) | |
Fixed #8600: Corrected example URLConf to match new comments framework. Thanks to julien for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8650 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/http/urls.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index 8c575cfcb5..1027772515 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -382,7 +382,7 @@ number of other URLconfs:: 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 ``$`` |
