Merge pull request #44965 from gtmanfred/2016.11

check if VALUE is a string_type
This commit is contained in:
Nicole Thomas 2018-01-02 11:42:38 -05:00 committed by GitHub
commit 3ab962b01a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -273,7 +273,7 @@ def _get_extra_options(**kwargs):
ret = []
kwargs = salt.utils.clean_kwargs(**kwargs)
for key, value in six.iteritems(kwargs):
if isinstance(key, six.string_types):
if isinstance(value, six.string_types):
ret.append('--{0}=\'{1}\''.format(key, value))
elif value is True:
ret.append('--{0}'.format(key))