We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14b9587 commit 85e93a1Copy full SHA for 85e93a1
3dsconv.py
@@ -142,7 +142,7 @@ def bytes2int(string):
142
def showprogress(val, max):
143
# crappy workaround I bet, but print() didn't do what I wanted
144
minval = min(val, max)
145
- 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))
146
sys.stdout.flush()
147
148
totalroms = 0
0 commit comments