Merge pull request #36137 from cachedout/issue_35423

Allow highstate outputter to show all results
This commit is contained in:
Erik Johnson 2016-09-12 11:37:49 -05:00 committed by GitHub
commit 7b96197c5e

View file

@ -133,9 +133,6 @@ def output(data):
ret = [
_format_host(host, hostdata)[0]
for host, hostdata in six.iteritems(data)
# Highstate return data must be a dict, if this is not the case
# then this value is likely a retcode.
if isinstance(hostdata, dict)
]
if ret:
return "\n".join(ret)