1
0
Fork 0
forked from github/pelican

Nicer logging of found writer

matches generator format
This commit is contained in:
MinchinWeb 2021-07-06 21:31:54 -06:00
commit 7eb730af78

View file

@ -222,7 +222,7 @@ class Pelican:
writer = writers[0]
logger.debug("Found writer: %s", writer)
logger.debug("Found writer: %s (%s)" % (writer.__name__, writer.__module__))
return writer(self.output_path, settings=self.settings)