1
0
Fork 0
forked from github/pelican

Merge pull request #697 from khertan/master

Adding a missing space in one error message
This commit is contained in:
Bruno Binet 2013-01-24 05:47:28 -08:00
commit 90672e5491

View file

@ -344,6 +344,6 @@ def is_valid_content(content, f):
content.check_properties()
return True
except NameError as e:
logger.error("Skipping %s: impossible to find informations about"
logger.error("Skipping %s: impossible to find informations about "
"'%s'" % (f, e))
return False