aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/util.py
diff options
context:
space:
mode:
authorElrond <elrond+mediagoblin.org@samba-tng.org>2011-06-23 18:45:39 +0200
committerElrond <elrond+mediagoblin.org@samba-tng.org>2011-07-02 20:50:31 +0200
commit42ef819cbb7edb2aecbc39f60ecfbfaee59b5039 (patch)
treec827e1c2fd8ea27c24d4008efb5d1cb6a7c194ac /mediagoblin/util.py
parent073b61fe53d4e499d7034bb8de2404cd87dc9095 (diff)
downloadmediagoblin-42ef819cbb7edb2aecbc39f60ecfbfaee59b5039.tar.lz
mediagoblin-42ef819cbb7edb2aecbc39f60ecfbfaee59b5039.tar.xz
mediagoblin-42ef819cbb7edb2aecbc39f60ecfbfaee59b5039.zip
Move get_jinja_loader to init submodule.
Diffstat (limited to 'mediagoblin/util.py')
-rw-r--r--mediagoblin/util.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/mediagoblin/util.py b/mediagoblin/util.py
index a20e87c4..ab219df0 100644
--- a/mediagoblin/util.py
+++ b/mediagoblin/util.py
@@ -64,22 +64,6 @@ def clear_test_buckets():
clear_test_template_context()
-def get_jinja_loader(user_template_path=None):
- """
- Set up the Jinja template loaders, possibly allowing for user
- overridden templates.
-
- (In the future we may have another system for providing theming;
- for now this is good enough.)
- """
- if user_template_path:
- return jinja2.ChoiceLoader(
- [jinja2.FileSystemLoader(user_template_path),
- jinja2.PackageLoader('mediagoblin', 'templates')])
- else:
- return jinja2.PackageLoader('mediagoblin', 'templates')
-
-
SETUP_JINJA_ENVS = {}