From 6656806f42f6c97264a65b2bbc9ba2cfb746bca3 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 1 Aug 2005 21:35:55 +0000 Subject: [PATCH] Fixed duplicate code bug in docs/overview.txt -- thanks, James Kew git-svn-id: http://code.djangoproject.com/svn/django/trunk@380 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/overview.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/overview.txt b/docs/overview.txt index 19d48ba059..f41ed6e24b 100644 --- a/docs/overview.txt +++ b/docs/overview.txt @@ -169,7 +169,6 @@ Reporter/Article example, here's what that might look like:: urlpatterns = patterns('', (r'^/articles/(?P\d{4})/$', 'myproject.news.views.articles.year_archive'), (r'^/articles/(?P\d{4})/(?P\d{2})/$', 'myproject.news.views.articles.month_archive'), - (r'^/articles/(?P\d{4})/(?P\d{2})/$', 'myproject.news.views.articles.month_archive'), (r'^/articles/(?P\d{4})/(?P\d{2})/(?P\d+)/$', 'myproject.news.views.articles.article_detail'), )