[1.8.x] Refs #17914 -- Discouraged using reverese() with callables.

Backport of a6acfc3183 from master
This commit is contained in:
Tim Graham 2015-08-03 08:33:51 -04:00
parent 5bdf0eafb1
commit f32bb3adf0
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ you can use any of the following to reverse the URL::
reverse('news_archive')
# passing a callable object
# (This is discouraged because you can't reverse namespaced views this way.)
from news import views
reverse(views.archive)