From 164c70386191f0761923c1344447b8fac0e0795c Mon Sep 17 00:00:00 2001 From: Allan Whatmough Date: Wed, 29 Dec 2010 13:21:21 +0000 Subject: [PATCH] Add a default for JINJA_EXTENSIONS (default is no extensions) --- pelican/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pelican/settings.py b/pelican/settings.py index 8f0dcdbd..c9795a08 100644 --- a/pelican/settings.py +++ b/pelican/settings.py @@ -22,6 +22,7 @@ _DEFAULT_CONFIG = {'PATH': None, 'CLEAN_URLS': False, # use /blah/ instead /blah.html in urls 'RELATIVE_URLS': True, 'DEFAULT_LANG': 'en', + 'JINJA_EXTENSIONS': [], } def read_settings(filename):