Merge pull request #50 from hbrunn/8.0-account_bank_statement_import_save_file-incomplete_format

[FIX] incomplete format string
This commit is contained in:
Stéphane Bidoul (ACSONE)
2015-12-09 19:59:22 +01:00

View File

@@ -47,6 +47,6 @@ class AccountBankStatementImport(models.TransientModel):
'type': 'binary',
'datas': base64.b64encode(data_file),
'description': '\n'.join(
'%(type)s: %(message)' % notification
'%(type)s: %(message)s' % notification
for notification in notifications) or False,
}