diff --git a/salt/cli/caller.py b/salt/cli/caller.py index 3e0f0fb2f8..e4756b6aad 100644 --- a/salt/cli/caller.py +++ b/salt/cli/caller.py @@ -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)