summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2011-09-10 17:20:31 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2011-09-10 17:20:31 +0000
commitfee2d1877f883ccd1aeb70e5a5776e573ef765b7 (patch)
treedfb3730b4938ff3cb0d4e7bf3a2c9dcee85fffbb /docs
parent36120f41a900cae27377d247ec482bc427811f51 (diff)
Fixed #16280. Document that both args and kwargs cannot be passed to reverse at the same time.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16780 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/http/urls.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index 4bb3b78d97..9b6e2d0749 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -808,6 +808,8 @@ This ``current_app`` argument is used as a hint to resolve application
namespaces into URLs on specific application instances, according to the
:ref:`namespaced URL resolution strategy <topics-http-reversing-url-namespaces>`.
+``args`` and ``kwargs`` cannot be passed to ``reverse()`` at the same time.
+
.. admonition:: Make sure your views are all correct.
As part of working out which URL names map to which patterns, the