From cee04af7a4dec9471eb96c85b756e39a64745a88 Mon Sep 17 00:00:00 2001 From: Nicolas CHARLOT Date: Mon, 9 Jan 2017 18:02:39 +0100 Subject: [PATCH] Fixed Jinja extensions settings --- tests/pelicanconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pelicanconf.py b/tests/pelicanconf.py index 9fa3233..86b2f4a 100644 --- a/tests/pelicanconf.py +++ b/tests/pelicanconf.py @@ -6,7 +6,7 @@ from __future__ import unicode_literals PLUGIN_PATHS = ['../plugins'] PLUGINS = ['i18n_subsites'] -JINJA_EXTENSIONS = ['jinja2.ext.i18n', 'jinja2.ext.autoescape', 'jinja2.ext.with_'] +JINJA_ENVIRONMENT = {'extensions': ['jinja2.ext.i18n', 'jinja2.ext.autoescape', 'jinja2.ext.with_']} AUTHOR = u'Test' SITEURL = u'http://localhost:8000'