From 49e2dda540aaebbb5ea4744418c986c94540830e Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Mon, 11 Apr 2016 13:05:00 +0200 Subject: [PATCH] pep8 --- update.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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() # ------------------------------------------------------------------------------