add space to join for user message
This commit is contained in:
parent
983883dc66
commit
bc606d3640
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue