From 928fa1f2c392e0b83547047f80f30aa12aa2a826 Mon Sep 17 00:00:00 2001 From: pux Date: Sun, 9 Feb 2020 19:50:50 +0100 Subject: better(?) behavior for progress bar? (you can see 100% status) --- timebomb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'timebomb.py') diff --git a/timebomb.py b/timebomb.py index dc721c3..9cb8496 100644 --- a/timebomb.py +++ b/timebomb.py @@ -68,7 +68,7 @@ def sleep(m, s): for x in range(sleep_time_s): pr_m, pr_s = divmod(x, 60) print(' {:02d}:{:02d} '.format(pr_m, pr_s), end='') - progress = int(x/sleep_time_s * pbar_len) + progress = int(x/(sleep_time_s-1) * pbar_len) print('#' * progress + '_' * int(pbar_len-progress), end='') print(' {:02d}:{:02d} '.format(m, s), end='\r') time.sleep(1) -- cgit v1.2.2-1-g5e49