Merge pull request #13239 from sysreq0/devel

We should give pipes.quote() a string every time
pull/13279/head
James Cammarata 9 years ago
commit 679488fdb5

@ -409,7 +409,7 @@ class ActionBase(with_metaclass(ABCMeta, object)):
# the remote system, which can be read and parsed by the module
args_data = ""
for k,v in iteritems(module_args):
args_data += '%s="%s" ' % (k, pipes.quote(v))
args_data += '%s="%s" ' % (k, pipes.quote(text_type(v)))
self._transfer_data(args_file_path, args_data)
display.debug("done transferring module to remote")

Loading…
Cancel
Save