From bc606d36406c7a99c6f0c04af15878c717d33e6d Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Wed, 5 Jan 2011 17:09:08 +0100 Subject: [PATCH] add space to join for user message --- weboob/tools/application/formatters/iformatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/tools/application/formatters/iformatter.py b/weboob/tools/application/formatters/iformatter.py index ec7759fd..ec0f68f5 100644 --- a/weboob/tools/application/formatters/iformatter.py +++ b/weboob/tools/application/formatters/iformatter.py @@ -48,7 +48,7 @@ __all__ = ['IFormatter', 'MandatoryFieldsNotFound'] class MandatoryFieldsNotFound(Exception): def __init__(self, missing_fields): - Exception.__init__(self, u'Mandatory fields not found: %s.' % ','.join(missing_fields)) + Exception.__init__(self, u'Mandatory fields not found: %s.' % ', '.join(missing_fields)) class IFormatter(object):