diff options
Diffstat (limited to 'dimension/dimension.in')
-rw-r--r-- | dimension/dimension.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dimension/dimension.in b/dimension/dimension.in index 2715c1b..733a12e 100644 --- a/dimension/dimension.in +++ b/dimension/dimension.in @@ -121,14 +121,14 @@ if args.output is None: def progress_bar(str, progress): try: if not args.quiet: - print(str, end = ' ') + print(str, end = " ") sys.stdout.flush() term_width = terminal_width() width = term_width - (len(str) + 1)%term_width for i in range(width): progress.wait((i + 1)/width) - print('.', end = '') + print(".", end = "") sys.stdout.flush() print() |