needed proper dict syntax

This commit is contained in:
Matt Henderson 2013-08-14 18:17:44 -07:00
parent 56b33145e7
commit 918d872f2c

View File

@ -179,7 +179,7 @@ class NotebookWebApplication(web.Application):
settings.update(settings_overrides)
# create a jinja2 environment using the template path and store it in settings
settings.jinja2_env=Environment(loader=FileSystemLoader(settings.template_path))
settings["jinja2_env"]=Environment(loader=FileSystemLoader(settings["template_path"]))
return settings