From fa77c3d66ae08e4d68f28364ce3c9699cce11c5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Sun, 10 Mar 2013 22:30:36 -0700 Subject: [PATCH] This should be a warning, not an error :) --- pelican/contents.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pelican/contents.py b/pelican/contents.py index c33511c1..bcff3cd5 100644 --- a/pelican/contents.py +++ b/pelican/contents.py @@ -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