aboutsummaryrefslogtreecommitdiff
path: root/runserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'runserver.py')
-rwxr-xr-xrunserver.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/runserver.py b/runserver.py
index d1f5702c..a80b0c39 100755
--- a/runserver.py
+++ b/runserver.py
@@ -34,6 +34,7 @@ def month_name(month_number):
return calendar.month_name[month_number]
application.jinja_env.filters['month_name'] = month_name
application.jinja_env.filters['datetime'] = format_datetime
+application.jinja_env.globals['conf'] = conf
# Views
from flask.ext.restful import Api
bgstack15