1
0
Fork 0
forked from github/pelican

Update pelican/contents.py

Put a space in error message to not concatain word 'about' and the missing tag
This commit is contained in:
Benoît HERVIER 2013-01-24 14:10:26 +01:00
commit 5f3a3e4582

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