From e27269ce49143bfff656533da68796741ab8652f Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Wed, 9 Dec 2015 15:35:33 +0100 Subject: [PATCH] [FIX] incomplete format string --- .../models/account_bank_statement_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_bank_statement_import_save_file/models/account_bank_statement_import.py b/account_bank_statement_import_save_file/models/account_bank_statement_import.py index 21f04a5..999781e 100644 --- a/account_bank_statement_import_save_file/models/account_bank_statement_import.py +++ b/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, }