From 5f46020e7090e28495d2b7e66e58f2c74698917a Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 22 Sep 2011 19:06:57 -0400 Subject: Use double rather than single quotes for Python strings. --- dimension/dimension.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dimension') 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() -- cgit v1.2.3