added back spaces for profile_tasks formatting
This commit is contained in:
parent
d38cc1e0a1
commit
729686a434
1 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ class CallbackModule(CallbackBase):
|
||||||
|
|
||||||
# Print the timings
|
# Print the timings
|
||||||
for uuid, result in results:
|
for uuid, result in results:
|
||||||
msg=u"{0:-<70} {1:->9}".format(result['name'],u' {0:.02f}s'.format(result['time']))
|
msg=u"{0:-<70}{1:->9}".format(result['name'] + u' ',u' {0:.02f}s'.format(result['time']))
|
||||||
if 'path' in result:
|
if 'path' in result:
|
||||||
msg += u"\n{0:-<79}".format(result['path'])
|
msg += u"\n{0:-<79}".format(result['path'] + u' ')
|
||||||
self._display.display(msg)
|
self._display.display(msg)
|
||||||
|
|
Loading…
Reference in a new issue