From 5f3a3e4582f84cf4407875dff945a3d42f79b368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20HERVIER?= Date: Thu, 24 Jan 2013 14:10:26 +0100 Subject: [PATCH] Update pelican/contents.py Put a space in error message to not concatain word 'about' and the missing tag --- pelican/contents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/contents.py b/pelican/contents.py index 5bde3c0a..d7d7e558 100644 --- a/pelican/contents.py +++ b/pelican/contents.py @@ -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