Skip to content

Commit 7496b75

Browse files
committed
don't resolve self.output property if out is specified
1 parent db2201a commit 7496b75

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/pepper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class Pepper(object):
6464
# version >= 2017.7
6565
salt.output.display_output(
6666
{minionid: minionret['ret']},
67-
self.cli.options.output or minionret.get('out', self.output),
67+
self.cli.options.output or minionret.get('out', None) or self.output,
6868
opts=self.opts
6969
)
7070
else:

0 commit comments

Comments
 (0)