use '-' instead of '~' in progress bar

This commit is contained in:
Nick 2011-02-17 16:04:54 +01:00
parent 1789e8d03c
commit 9a3316f950

View File

@ -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