1
0
mirror of https://github.com/django/django.git synced 2025-04-18 06:14:37 +00:00

[1.5.x] Fixed typo in previous commit; refs .

Backport of 03bc0a8ac5 from master
This commit is contained in:
Tim Graham 2013-11-24 16:28:29 -05:00
parent 0934894976
commit c0c7795562

@ -2159,7 +2159,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