This should be a warning, not an error :)

This commit is contained in:
Alexis Métaireau 2013-03-10 22:30:36 -07:00
commit fa77c3d66a

View file

@ -355,6 +355,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 "
"'%s'" % (f, e))
logger.warning("Skipping %s: impossible to find informations about "
"'%s'" % (f, e))
return False