diff options
| author | Alasdair Nicol <alasdair@thenicols.net> | 2013-08-03 20:42:02 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-08-03 19:36:15 -0400 |
| commit | ccef8b2aa26201ec1f3c4d3be6e69f52edf51144 (patch) | |
| tree | 6d56bf9e8f47d158276d9bbe52d6f363cd2d8359 /docs | |
| parent | 97254154ab43d7973fba09ccd7ab548866f83e03 (diff) | |
[1.6.x] Added missing request argument to example in URL dispatcher docs
Backport of a0c58113b9 from master
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 8a3f240307..a9f488737d 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -412,7 +412,7 @@ For example:: ) In this example, for a request to ``/blog/2005/``, Django will call -``blog.views.year_archive(year='2005', foo='bar')``. +``blog.views.year_archive(request, year='2005', foo='bar')``. This technique is used in the :doc:`syndication framework </ref/contrib/syndication>` to pass metadata and |
