Skip to content

Commit

Permalink
goindex2qif: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
laurynas-biveinis committed Nov 12, 2024
1 parent e27b78b commit 313fd12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/usr/bin/goindex2qif
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ with open(args.output, "w", encoding='utf-8') as output_file:
fee = row['Mokestis']
op = str(row['Fondo vnt. operacija'])
if op == match_2pf_fund_source:
amount = row['Įmokos/Išmokos'].replace(",", ".")
amount = str(row['Įmokos/Išmokos']).replace(",", ".")
qif_trx = QIFInvestmentTransaction(date, security_2pf, fee, amount,
unit_price, count)
output_file.write(f"D{date}\n")
Expand Down

0 comments on commit 313fd12

Please sign in to comment.