1
0
Fork 0
forked from github/pelican

BUG: Typogrify not applied to pages.

This commit is contained in:
epatters 2012-09-08 21:39:10 -07:00 committed by Alexis Métaireau
commit ac67587b79

View file

@ -382,7 +382,7 @@ class PagesGenerator(Generator):
os.path.join(self.path, self.settings['PAGE_DIR']),
exclude=self.settings['PAGE_EXCLUDES']):
try:
content, metadata = read_file(f)
content, metadata = read_file(f, settings=self.settings)
except Exception, e:
logger.warning(u'Could not process %s\n%s' % (f, str(e)))
continue