mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 01:33:09 +00:00
added back spaces for profile_tasks formatting
This commit is contained in:
@@ -133,7 +133,7 @@ class CallbackModule(CallbackBase):
|
||||
|
||||
# Print the timings
|
||||
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:
|
||||
msg += u"\n{0:-<79}".format(result['path'])
|
||||
msg += u"\n{0:-<79}".format(result['path'] + u' ')
|
||||
self._display.display(msg)
|
||||
|
||||
Reference in New Issue
Block a user