Merge pull request #42595 from gtmanfred/2017.7.1

make sure to pass arg as well
This commit is contained in:
Nicole Thomas 2017-07-28 10:21:57 -06:00 committed by GitHub
commit a50fe5433a

View File

@ -273,6 +273,8 @@ class ReactWrap(object):
try:
f_call = salt.utils.format_call(l_fun, low)
kwargs = f_call.get('kwargs', {})
if 'arg' not in kwargs:
kwargs['arg'] = []
if 'kwarg' not in kwargs:
kwargs['kwarg'] = {}