From ccef8b2aa26201ec1f3c4d3be6e69f52edf51144 Mon Sep 17 00:00:00 2001 From: Alasdair Nicol Date: Sat, 3 Aug 2013 20:42:02 +0100 Subject: [PATCH] [1.6.x] Added missing request argument to example in URL dispatcher docs Backport of a0c58113b9 from master --- docs/topics/http/urls.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index 8a3f2403074..a9f488737d4 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 ` to pass metadata and