mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 15:38:43 +00:00
use '-' instead of '~' in progress bar
This commit is contained in:
parent
1789e8d03c
commit
9a3316f950
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue