Fixed bug in counting number of converted transactions

This commit is contained in:
Gerwin van der Lugt 2021-01-28 11:33:17 +01:00
parent e2d74bc768
commit 8825f87f61
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ def main():
for transaction in transactions:
writer.write_transaction(transaction)
print('Wrote {} transactions to file: {}.'.format(len(transaction), args.output_file))
print('Wrote {} transactions to file: {}.'.format(len(transactions), args.output_file))
if __name__ == "__main__":
main()
main()