1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Make module args as unicode more or less not choke.

This commit is contained in:
Michael DeHaan 2012-08-02 20:29:18 -04:00
parent b76efa39be
commit 05df6464ef

View file

@ -700,7 +700,7 @@ class Runner(object):
if module_common.REPLACER in module_data:
is_new_style=True
module_data = module_data.replace(module_common.REPLACER, module_common.MODULE_COMMON)
encoded_args = base64.b64encode(utils.template(self.module_args, inject))
encoded_args = base64.b64encode(utils.template(self.module_args, inject).encode('utf-8'))
module_data = module_data.replace(module_common.REPLACER_ARGS, encoded_args)
# use the correct python interpreter for the host