Skip to content

Commit 85e93a1

Browse files
committed
remove extra spacing
1 parent 14b9587 commit 85e93a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

3dsconv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def bytes2int(string):
142142
def showprogress(val, max):
143143
# crappy workaround I bet, but print() didn't do what I wanted
144144
minval = min(val, max)
145-
sys.stdout.write("\r %5.1f%% %10i / %i " % ((minval / max) * 100, minval, max))
145+
sys.stdout.write("\r %5.1f%% %10i / %i" % ((minval / max) * 100, minval, max))
146146
sys.stdout.flush()
147147

148148
totalroms = 0

0 commit comments

Comments
 (0)