Merge pull request #143 from myano/master

add unicode handling for logging
This commit is contained in:
Simon Liedtke 2011-07-02 08:02:35 -07:00
commit 10869f7845

View file

@ -152,7 +152,7 @@ def main():
else:
pelican.run()
except Exception, e:
log.critical(str(e))
log.critical(unicode(e))
if __name__ == '__main__':