Merge pull request #24242 from travishegner/develop

Adding hostname to highstate summary output
This commit is contained in:
Justin Findlay 2015-05-29 08:21:33 -06:00
commit b1042353a1

View File

@ -54,7 +54,7 @@ Example output:
ret:
True
Summary
Summary for myminion
------------
Succeeded: 1
Failed: 0
@ -287,7 +287,7 @@ def _format_host(host, data):
hstrs.append(
colorfmt.format(
colors['CYAN'],
u'\nSummary\n{0}'.format('-' * line_max_len),
u'\nSummary for {0}\n{1}'.format(host, '-' * line_max_len),
colors
)
)