diff --git a/lib/svtplay_dl/output.py b/lib/svtplay_dl/output.py index 23f5a29..c582609 100644 --- a/lib/svtplay_dl/output.py +++ b/lib/svtplay_dl/output.py @@ -101,7 +101,7 @@ def progressbar(total, pos, msg=""): Of course, the ETA part should be supplied be the calling function. """ - width = get_terminal_size()[0] - 25 + width = get_terminal_size()[0] - 35 rel_pos = int(float(pos)/total*width) bar = ''.join(["=" * rel_pos, "." * (width - rel_pos)])