Skip to content

Commit

Permalink
Merge pull request #437 from dmedvinsky/bug/docs-typo-reversing
Browse files Browse the repository at this point in the history
Fixed typo in URL reversing docs
  • Loading branch information
timgraham committed Oct 11, 2012
2 parents 06f5da3 + b498ce8 commit 0921b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/topics/http/urls.txt
Expand Up @@ -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
Expand Down

0 comments on commit 0921b74

Please sign in to comment.