Fix state_verbose output in salt-call

This commit is contained in:
Thomas S Hatch 2012-08-17 16:20:46 -06:00
parent 36fe81b5a0
commit 81b0e23c87

View File

@ -103,4 +103,7 @@ class Caller(object):
)
if printout is None:
printout = salt.output.get_outputter(None)
printout({'local': ret['return']}, color=not bool(self.opts['no_color']))
printout(
{'local': ret['return']},
color=not bool(self.opts['no_color']),
**self.opts)