Skip to content

Commit

Permalink
Merge pull request saltstack#39356 from cloudflare/table_out_fix
Browse files Browse the repository at this point in the history
Fix table outputter opts
  • Loading branch information
Mike Place committed Feb 13, 2017
2 parents 8d581f5 + 6539f4b commit 41220e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions salt/output/table_out.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,8 @@ def output(ret, **kwargs):
for argk in argks:
argv = kwargs.get(argk) \
or __opts__.get('out.table.{key}'.format(key=argk))
if argv:
class_kvargs[argv] = argk
if argv is not None:
class_kvargs[argk] = argv

table = TableDisplay(**class_kvargs)

Expand Down

0 comments on commit 41220e7

Please sign in to comment.