diff options
| author | Timo Graham <timograham@gmail.com> | 2011-08-20 19:27:58 +0000 |
|---|---|---|
| committer | Timo Graham <timograham@gmail.com> | 2011-08-20 19:27:58 +0000 |
| commit | c673bd1c4b9b1bcc8ce6de00ecb7df13b76f9e6c (patch) | |
| tree | 6b0f3e50ae3a4d382ce5428bc440ccf05633fad6 | |
| parent | 2ac0b97d4340bef2d26ad09841553ff5d5147d23 (diff) | |
Fixed #16654 - Syntax error in reverse() example; thanks jedie.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16630 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -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 f06dbe1506..4bb3b78d97 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -826,7 +826,7 @@ namespaces into URLs on specific application instances, according to the The string returned by :meth:`~django.core.urlresolvers.reverse` is already :ref:`urlquoted <uri-and-iri-handling>`. For example:: - >>> reverse('cities', args=u'Orléans') + >>> reverse('cities', args=[u'Orléans']) '.../Orl%C3%A9ans/' Applying further encoding (such as :meth:`~django.utils.http.urlquote` or |
