We should use the variable local_templates instead of user_template_path
authorChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 2 Dec 2011 22:13:14 +0000 (16:13 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 2 Dec 2011 22:13:14 +0000 (16:13 -0600)
mediagoblin/app.py

index 7f087ed93e454e2d3ee78f330204022c8be8503e..04eb2acc8fa2de3efb1f0c85adea3f02710aa1dd 100644 (file)
@@ -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()