documentation for get_jinja_env
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 17 Apr 2011 14:30:10 +0000 (09:30 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 17 Apr 2011 14:30:10 +0000 (09:30 -0500)
mediagoblin/util.py

index d8d981c9a9d4f19d064dbffeb39e737097674791..bd50925670896eba98a693bdfc75ed173205fc7e 100644 (file)
@@ -18,6 +18,13 @@ import jinja2
 import mongokit
 
 def get_jinja_env(user_template_path=None):
+    """
+    Set up the Jinja environment, 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:
         loader = jinja2.ChoiceLoader(
             [jinja2.FileSystemLoader(user_template_path),