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:
parent
1a9d6119e0
commit
b042c93b2c
1 changed files with 2 additions and 2 deletions
|
|
@ -3312,11 +3312,11 @@ def start(options, input, output):
|
||||||
sizediff = (newsize / oldsize) * 100.
|
sizediff = (newsize / oldsize) * 100.
|
||||||
|
|
||||||
if not options.quiet:
|
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,
|
input.name,
|
||||||
duration,
|
duration,
|
||||||
oldsize,
|
|
||||||
newsize,
|
newsize,
|
||||||
|
oldsize,
|
||||||
sizediff))
|
sizediff))
|
||||||
if options.verbose:
|
if options.verbose:
|
||||||
print(getReport())
|
print(getReport())
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue