From e0b9d456e2e6515e3384db2445d74dab05e15f2d Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Wed, 17 Mar 2021 18:47:33 -0400 Subject: [PATCH] Fixed progress bar bug --- src/Picocrypt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Picocrypt.py b/src/Picocrypt.py index f76afa0..01baf9a 100644 --- a/src/Picocrypt.py +++ b/src/Picocrypt.py @@ -612,7 +612,7 @@ def start(): statusString.set(info) # Increase done and write to output - done += 1104905 if (reedsolo and decrypting) else chunkSize + done += 1104905 if (reedsolo and mode=="decrypt") else chunkSize fout.write(data) # Show appropriate notice if file corrupted or modified