Skip to content

Commit

Permalink
Merge 96a6088 into c8e094f
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-duplo committed Jan 28, 2018
2 parents c8e094f + 96a6088 commit 7c17ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mt940/processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def transaction_details_post_processor(transactions, tag, tag_dict, result):
details = ''.join(detail.strip('\n\r') for detail in details.splitlines())

gvc = details[:3]
if gvc.isdigit() and details[3:6] == '?00':
if gvc.isdigit() and details[3] == '?':
result.update(_parse_mt940_details(details))

purpose = result.get('purpose')
Expand Down

0 comments on commit 7c17ce5

Please sign in to comment.