add space to join for user message

This commit is contained in:
Christophe Benz 2011-01-05 17:09:08 +01:00
commit bc606d3640

View file

@ -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):