From aa0696e3fdedb3dbd6259e287576548951836733 Mon Sep 17 00:00:00 2001 From: Stefan Rijnhart Date: Sat, 14 Sep 2013 12:10:48 +0200 Subject: [PATCH] [FIX] Error in object attribute --- account_banking/parsers/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_banking/parsers/models.py b/account_banking/parsers/models.py index a8a0c3014..8f8effb6d 100644 --- a/account_banking/parsers/models.py +++ b/account_banking/parsers/models.py @@ -34,7 +34,7 @@ class mem_bank_statement(object): # Lock attributes to enable parsers to trigger non-conformity faults __slots__ = [ 'start_balance','end_balance', 'date', 'local_account', - 'local_currency', 'id', 'statements' + 'local_currency', 'id', 'transactions' ] def __init__(self, *args, **kwargs): super(mem_bank_statement, self).__init__(*args, **kwargs)