Skip to content

Commit

Permalink
remove extra spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
ihaveamac committed Aug 5, 2016
1 parent 14b9587 commit 85e93a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3dsconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 85e93a1

Please sign in to comment.