ansible: fix 3.x TypeError regression.

This commit is contained in:
David Wilson 2018-11-07 02:28:06 +00:00
parent 44d6ca771a
commit 16911c9464
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ class Runner(object):
self.service_context = service_context
self.econtext = econtext
self.detach = detach
self.args = json.loads(json_args)
self.args = json.loads(mitogen.core.to_text(json_args))
self.good_temp_dir = good_temp_dir
self.extra_env = extra_env
self.env = env