Need to pass data in via kwargs

This commit is contained in:
Thomas S Hatch 2012-08-15 23:21:11 -06:00
parent 3ddb66bedf
commit c10b7bcb06

View File

@ -110,7 +110,7 @@ class HighStateOutputter(Outputter):
if isinstance(data[host], dict):
# Strip out the result: True, without changes returns if
# state_verbose is False
if not self.opts.get('state_verbose', False):
if not kwargs.get('verbose', False):
data[host] = strip_clean(data[host])
# Verify that the needed data is present
for tname, info in data[host].items():