mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ensure display is terminal sensistive
fixes #18248 by using display width intead of hardcoded length
This commit is contained in:
parent
24cfb10ce9
commit
62a434141e
1 changed files with 2 additions and 2 deletions
|
@ -136,7 +136,7 @@ class CallbackModule(CallbackBase):
|
|||
|
||||
# Print the timings
|
||||
for uuid, result in results:
|
||||
msg=u"{0:-<70}{1:->9}".format(result['name'] + u' ',u' {0:.02f}s'.format(result['time']))
|
||||
msg=u"{0:-<{2}}{1:->9}".format(result['name'] + u' ',u' {0:.02f}s'.format(result['time']), self.columns - 9)
|
||||
if 'path' in result:
|
||||
msg += u"\n{0:-<79}".format(result['path'] + u' ')
|
||||
msg += u"\n{0:-<{1}}".format(result['path'] + u' '.format(self.columns))
|
||||
self._display.display(msg)
|
||||
|
|
Loading…
Reference in a new issue