From 42ef819cbb7edb2aecbc39f60ecfbfaee59b5039 Mon Sep 17 00:00:00 2001 From: Elrond Date: Thu, 23 Jun 2011 18:45:39 +0200 Subject: Move get_jinja_loader to init submodule. --- mediagoblin/util.py | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'mediagoblin/util.py') 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 = {} -- cgit v1.2.3