Add a space and a capital letter to success banner

It's ugly when we print:

  ok: [ubuntu-xenial]Ran in 0:00:05.475300 seconds. Start: 2017-05-26
  20:21:40.805825 end: 2017-05-26 20:21:46.281125

It would be better if we print:

  ok: [ubuntu-xenial] Runtime: 0:00:05.475300 Start: 2017-05-26
  20:21:40.805825 End: 2017-05-26 20:21:46.281125

Note the space before Runtime and the capital E on end to match the capital
S on Start.

Change "Ran in {delta} seconds." to "Runtime: {delta}" - because
0:00:05.475300 isn't in units of seconds - it's a time with hours,
minutes, seconds and microseconds.

Change-Id: I9c61a1d81d8f9f98bb1646674c7e6830b3e85619
This commit is contained in:
Monty Taylor 2017-05-26 15:36:47 -05:00
parent c5b840559c
commit a457b47589
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ class CallbackModule(default.CallbackModule):
if result._task.loop and 'results' in result._result:
self._process_items(result)
else:
msg += "Ran in {delta} seconds. Start: {start} end: {end}".format(
msg += " Runtime: {delta} Start: {start} End: {end}".format(
**result._result)
self._handle_warnings(result._result)