From 9dbf20d795315e1a5a1de621f06a34f638e22416 Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Thu, 25 Feb 2010 16:51:55 +0000 Subject: [PATCH] Fixed error on line 691. Thanks Peter. svn: r14485 --- src/plugins/import/ImportProGen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/import/ImportProGen.py b/src/plugins/import/ImportProGen.py index 59935bdcf..ff2d83ed2 100644 --- a/src/plugins/import/ImportProGen.py +++ b/src/plugins/import/ImportProGen.py @@ -688,7 +688,7 @@ class ProgenParser(object): date.set(gen.lib.Date.QUAL_NONE, gen.lib.Date.MOD_ABOUT, gen.lib.Date.CAL_GREGORIAN, (0, month, year, None)) return date - log.warning(_("date did not match: '(text)%s' (%(msg)s)")) % { + log.warning(_("date did not match: '%(text)s' (%(msg)s)")) % { 'text' : txt.encode('utf-8'), 'msg' : diag_msg or '' } # Hmmm. Just use the plain text. date.set_as_text(txt)