Browse Source

[ENH] Support zip files.

pull/137/head
Ronald Portier (Therp BV) 9 years ago
committed by Fekete Mihai
parent
commit
41d3b42e9c
  1. 2
      account_bank_statement_import_mt940_base/mt940.py

2
account_bank_statement_import_mt940_base/mt940.py

@ -111,7 +111,7 @@ class MT940(object):
This in fact uses the ING syntax, override in others."""
self.mt940_type = 'General'
self.header_lines = 3 # Number of lines to skip
self.header_regex = '^0000 01INGBNL2AXXXX|^{1'
self.header_regex = '^0000 01INGBNL2AXXXX|^{1' # Start of header
self.footer_regex = '^-}$|^-XXX$' # Stop processing on seeing this
self.tag_regex = '^:[0-9]{2}[A-Z]*:' # Start of new tag
self.current_statement = None

Loading…
Cancel
Save