Switch order of new/old size in console output

(It already looked like a fraction, now it also yields the correct result if it's read like one)
This commit is contained in:
Eduard Braun 2016-02-19 04:47:33 +01:00
parent 1a9d6119e0
commit b042c93b2c

View file

@ -3312,11 +3312,11 @@ def start(options, input, output):
sizediff = (newsize / oldsize) * 100.
if not options.quiet:
print('Scour processed file "{}" in {} ms: {}/{} bytes orig/new -> {:.1f}%'.format(
print('Scour processed file "{}" in {} ms: {}/{} bytes new/orig -> {:.1f}%'.format(
input.name,
duration,
oldsize,
newsize,
oldsize,
sizediff))
if options.verbose:
print(getReport())