diff --git a/update.py b/update.py index fc26890..70c6bb5 100644 --- a/update.py +++ b/update.py @@ -53,8 +53,7 @@ def print_progress_bar(text, done, total, width): Print progress bar. """ n = int(float(width) * float(done) / float(total)) - sys.stdout.write("\r{0} [{1}{2}] ({3}/{4})".format(text, '#' * n, - ' ' * (width - n), done, total)) + sys.stdout.write("\r{0} [{1}{2}] ({3}/{4})".format(text, '#' * n, ' ' * (width - n), done, total)) sys.stdout.flush() # ------------------------------------------------------------------------------