mirror of
https://github.com/Hopiu/django.git
synced 2026-05-19 21:01:51 +00:00
Merge pull request #437 from dmedvinsky/bug/docs-typo-reversing
Fixed typo in URL reversing docs
This commit is contained in:
commit
0921b74e69
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue