Commit 6f9d2506 authored by Timo Graham's avatar Timo Graham
Browse files

[1.3.X] Fixed #16654 - Syntax error in reverse() example; thanks jedie.

Backport of r16630 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16631 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 329d80fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -820,7 +820,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