mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-12 04:24:27 +00:00
use '-' instead of '~' in progress bar
This commit is contained in:
parent
1789e8d03c
commit
9a3316f950
@ -85,7 +85,7 @@ def format_progressbar(progress, width):
|
|||||||
s = "["
|
s = "["
|
||||||
p = int(round((progress/100) * w))
|
p = int(round((progress/100) * w))
|
||||||
s += "#" * p
|
s += "#" * p
|
||||||
s += "~" * (w - p)
|
s += "-" * (w - p)
|
||||||
s += "]"
|
s += "]"
|
||||||
return s
|
return s
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user