From 8825f87f6139d1c2d9c71899be4f7a44eb5c3c64 Mon Sep 17 00:00:00 2001 From: Gerwin van der Lugt Date: Thu, 28 Jan 2021 11:33:17 +0100 Subject: [PATCH] Fixed bug in counting number of converted transactions --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 4050543..6010933 100644 --- a/main.py +++ b/main.py @@ -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() \ No newline at end of file + main()