From de5000396e381eaeb86d0c908f99a365839a9f29 Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Wed, 17 Mar 2021 18:42:19 -0400 Subject: [PATCH] Fixed minor 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 db1cfb8..f76afa0 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 += chunkSize if not reedsolo else 1104905 + done += 1104905 if (reedsolo and decrypting) else chunkSize fout.write(data) # Show appropriate notice if file corrupted or modified