aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/app.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-12-02 16:13:14 -0600
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-12-02 16:13:14 -0600
commit1e9d1acc03aa42ff979c8d15162d51441b81ec5d (patch)
treebac1e0e99fd041360e15844d8ca2ebc1de12c5b5 /mediagoblin/app.py
parent93e4622491ff6bed339267cea2a0a98a7af3c8d8 (diff)
downloadmediagoblin-1e9d1acc03aa42ff979c8d15162d51441b81ec5d.tar.lz
mediagoblin-1e9d1acc03aa42ff979c8d15162d51441b81ec5d.tar.xz
mediagoblin-1e9d1acc03aa42ff979c8d15162d51441b81ec5d.zip
We should use the variable local_templates instead of user_template_path
Diffstat (limited to 'mediagoblin/app.py')
-rw-r--r--mediagoblin/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/app.py b/mediagoblin/app.py
index 7f087ed9..04eb2acc 100644
--- a/mediagoblin/app.py
+++ b/mediagoblin/app.py
@@ -63,7 +63,7 @@ class MediaGoblinApp(object):
# Get the template environment
self.template_loader = get_jinja_loader(
- app_config.get('user_template_path'))
+ app_config.get('local_templates'))
# Set up storage systems
self.public_store, self.queue_store = setup_storage()