[FIX] don't choke on unstructured tag 86 (nothing usefule happend then

though)
[ADD] bump version number
This commit is contained in:
Holger Brunn
2014-05-12 10:57:10 +02:00
parent 1ecc7a1e1d
commit f16eccbdf8
2 changed files with 3 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
##############################################################################
{
"name" : "MT940 import for Dutch ING",
"version" : "1.0",
"version" : "1.1",
"author" : "Therp BV",
"complexity": "normal",
"description": """

View File

@@ -72,7 +72,8 @@ class IngMT940Parser(MT940, parser):
current_codeword = word
subfields[current_codeword] = []
continue
subfields[current_codeword].append(word)
if current_codeword in subfields:
subfields[current_codeword].append(word)
if 'BENM' in subfields:
self.current_transaction.remote_account = subfields['BENM'][0]