Minor fix in console output (superfluous space)

This commit is contained in:
Eduard Braun 2015-11-17 23:09:25 +01:00
parent 89f4b687f2
commit 532f664001

View file

@ -3301,8 +3301,8 @@ def start(options, input, output):
# GZ: not using globals would be good too
if not options.quiet:
print(' File:', input.name, \
os.linesep + ' Time taken:', str(end-start) + 's' + os.linesep, \
print(' File:', input.name, os.linesep + \
' Time taken:', str(end-start) + 's', os.linesep + \
getReport(), file=sys.stderr)
oldsize = len(in_string)