Skip to content

Commit

Permalink
Merge pull request #113 from dhongu/15.0-fix_import_bt
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
dhongu authored Dec 6, 2023
2 parents 19355fd + 6c6b42c commit 28e93f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def handle_tag_61(self, data):
raise ValueError("Cannot parse %s" % data)
parsed_data = re_61.groupdict()
self.current_transaction["amount"] = str2amount(parsed_data["sign"], parsed_data["amount"])
self.current_transaction["note"] = parsed_data["reference"]
self.current_transaction["ref"] = parsed_data["reference"]

def handle_tag_86(self, data):
"""Parse 86 tag containing reference data."""
Expand Down

0 comments on commit 28e93f5

Please sign in to comment.