Skip to content

Commit 3e2b366

Browse files
committed
Merge pull request saltstack#17081 from lyft/fix-state-verbose
Fix state_verbose: False output
2 parents 1f1f219 + 53d8304 commit 3e2b366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

salt/output/highstate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def _strip_clean(returns):
349349
'''
350350
rm_tags = []
351351
for tag in returns:
352-
if not isinstance(tag, dict):
352+
if isinstance(tag, dict):
353353
continue
354354
if returns[tag]['result'] and not returns[tag]['changes']:
355355
rm_tags.append(tag)

0 commit comments

Comments
 (0)