Module: deluge Branch: master Commit: 9a3316f95028bb5a1fe72d43b09ae0ac42ab6475
Author: Nick <[email protected]> Date: Thu Feb 17 16:04:54 2011 +0100 use '-' instead of '~' in progress bar --- deluge/ui/console/commands/info.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/ui/console/commands/info.py b/deluge/ui/console/commands/info.py index d42a80e..cf5ae48 100644 --- a/deluge/ui/console/commands/info.py +++ b/deluge/ui/console/commands/info.py @@ -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 -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
