From f6798885e6cc97bccd1e0fd861b54b01fcdb9605 Mon Sep 17 00:00:00 2001 From: Ron DuPlain Date: Tue, 13 Sep 2011 21:22:23 -0400 Subject: [PATCH] Update create_global_jinja_loader docstring, #321. --- flask/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/app.py b/flask/app.py index 90dafcc0..15f3ead2 100644 --- a/flask/app.py +++ b/flask/app.py @@ -606,7 +606,7 @@ class Flask(_PackageBoundObject): """Creates the loader for the Jinja2 environment. Can be used to override just the loader and keeping the rest unchanged. It's discouraged to override this function. Instead one should override - the :meth:`create_jinja_loader` function instead. + the :meth:`jinja_loader` function instead. The global loader dispatches between the loaders of the application and the individual blueprints.