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:30 -0400 |
| commit | f4806e3ef697a41e8e4f762466d37129cfb5431d (patch) | |
| tree | 8385705a63a2fe7f6fa3ceac2637a6c26c0aa825 | |
| parent | f2969c7e02f7b300d410df1154dd585a5082c433 (diff) | |
[1.5.x] Added missing request argument to example in URL dispatcher docs
Backport of a0c58113b9 from master
| -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 ce9a364d8e..cfe1f4619e 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -407,7 +407,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 |
