diff options
| author | Dmitry Medvinsky <dmedvinsky@gmail.com> | 2012-10-11 12:38:14 +0400 |
|---|---|---|
| committer | Dmitry Medvinsky <dmedvinsky@gmail.com> | 2012-10-11 12:38:14 +0400 |
| commit | b498ce820384c6967fbec3a32be3b9cd5b01e63d (patch) | |
| tree | fbcf106e47bee2dd335568c397ad49714754a718 | |
| parent | 7ef2781ca0ce48872e21dce2f322c9e4106d1cfd (diff) | |
Fix typo in URLs reversing 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 c51ce2d2a4..7b5d3ded63 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -596,7 +596,7 @@ Or in Python code:: # ... year = 2006 # ... - return HttpResponseRedirect(reverse('new.views.year_archive', args=(year,))) + return HttpResponseRedirect(reverse('news.views.year_archive', args=(year,))) If, for some reason, it was decided that the URL where content for yearly article archives are published at should be changed then you would only need to |
