summaryrefslogtreecommitdiffstats
path: root/dimension
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2011-09-22 19:06:57 -0400
committerTavian Barnes <tavianator@gmail.com>2011-09-22 19:06:57 -0400
commit5f46020e7090e28495d2b7e66e58f2c74698917a (patch)
treea2f5cfba9aa25024e176e8f05274e80a09aef4e4 /dimension
parenta09085f36ac82886ba768ab141361c2e94c6ff5e (diff)
downloaddimension-5f46020e7090e28495d2b7e66e58f2c74698917a.tar.xz
Use double rather than single quotes for Python strings.
Diffstat (limited to 'dimension')
-rw-r--r--dimension/dimension.in4
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()