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.
|
||||
|
||||
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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue