aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/util.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-07-02 15:48:49 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-07-02 15:48:49 -0500
commit5d5eb6c3310ac7dea78a5788919a848dd3203616 (patch)
treefafdce96bddaedd6aa011b10eca9f3707e6afb5a /mediagoblin/util.py
parent2110408f4437a9bd7d4d158139cf869518c46456 (diff)
parent421129b6bbf460057831914c25ab5694f5d21d4f (diff)
downloadmediagoblin-5d5eb6c3310ac7dea78a5788919a848dd3203616.tar.lz
mediagoblin-5d5eb6c3310ac7dea78a5788919a848dd3203616.tar.xz
mediagoblin-5d5eb6c3310ac7dea78a5788919a848dd3203616.zip
Merge remote branch 'remotes/elrond/dev/init'
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 = {}