From c10b7bcb062c3093e01f5dcb74c7778d28e8c84a Mon Sep 17 00:00:00 2001 From: Thomas S Hatch Date: Wed, 15 Aug 2012 23:21:11 -0600 Subject: [PATCH] Need to pass data in via kwargs --- salt/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/output.py b/salt/output.py index cf2097cbe4..e8507201a1 100644 --- a/salt/output.py +++ b/salt/output.py @@ -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():