Browse Source

[FIX] incomplete format string

pull/50/head
Holger Brunn 9 years ago
parent
commit
e27269ce49
  1. 2
      account_bank_statement_import_save_file/models/account_bank_statement_import.py

2
account_bank_statement_import_save_file/models/account_bank_statement_import.py

@ -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,
}
Loading…
Cancel
Save