Commit df18cc63 authored by Tim Graham's avatar Tim Graham
Browse files

[1.6.x] Fixed typo in previous commit; refs #21490.

Backport of 03bc0a8a from master
parent af65860c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2354,7 +2354,7 @@ that instance as a ``current_app`` hint to the reverse call. For example,
if you specifically wanted the admin view from the admin instance named
``custom``, you would need to call::

    >>> change_url = urlresolvers.reverse('custom:polls_choice_change',
    >>> change_url = urlresolvers.reverse('admin:polls_choice_change',
    ...                                   args=(c.id,), current_app='custom')

For more details, see the documentation on :ref:`reversing namespaced URLs