From 85e93a118ed43846d98f5de07abc3a1da6c44cdf Mon Sep 17 00:00:00 2001 From: ihaveamac Date: Thu, 4 Aug 2016 22:50:41 -0700 Subject: [PATCH] remove extra spacing --- 3dsconv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3dsconv.py b/3dsconv.py index 3a71c4c..f5dc16e 100755 --- a/3dsconv.py +++ b/3dsconv.py @@ -142,7 +142,7 @@ def bytes2int(string): def showprogress(val, max): # crappy workaround I bet, but print() didn't do what I wanted minval = min(val, max) - sys.stdout.write("\r %5.1f%% %10i / %i " % ((minval / max) * 100, minval, max)) + sys.stdout.write("\r %5.1f%% %10i / %i" % ((minval / max) * 100, minval, max)) sys.stdout.flush() totalroms = 0