mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +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 = "["
|
||||
p = int(round((progress/100) * w))
|
||||
s += "#" * p
|
||||
s += "~" * (w - p)
|
||||
s += "-" * (w - p)
|
||||
s += "]"
|
||||
return s
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue