Merge pull request #45 from Ede123/console_output
Switch order of new/old size in console output
This commit is contained in:
commit
ab90d18cb2
1 changed files with 2 additions and 2 deletions
|
|
@ -3325,11 +3325,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