Skip to content

Commit

Permalink
Merge branch 'release/4.29.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Mar 27, 2023
2 parents 81bfc45 + bec0fc3 commit 04f3949
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mt940/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
statistics and manipulation.
'''.strip().split())
__email__ = '[email protected]'
__version__ = '4.28.0'
__version__ = '4.29.0'
__license__ = 'BSD'
__copyright__ = 'Copyright 2015 Rick van Hattem (wolph)'
__url__ = 'https://github.com/WoLpH/mt940'
3 changes: 2 additions & 1 deletion mt940/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,8 @@ class Statement(Tag):
(?P<status>R?[DC]) # 2a Debit/Credit Mark
(?P<funds_code>[A-Z])? # [1!a] Funds Code (3rd character of the currency
# code, if needed)
\n? # apparently some banks (sparkassen) incorporate newlines here
[\n ]? # apparently some banks (sparkassen) incorporate newlines here
# cuscal can also send a space here as well
(?P<amount>[\d,]{1,15}) # 15d Amount
(?P<id>[A-Z][A-Z0-9 ]{3})? # 1!a3!c Transaction Type Identification Code
# We need the (slow) repeating negative lookahead to search for // so we
Expand Down

0 comments on commit 04f3949

Please sign in to comment.