FIx typo arg_path (not plural)

This commit is contained in:
Toshio Kuratomi 2015-10-02 19:55:32 -07:00
parent 5680a9fa32
commit 613e87db6c

View file

@ -103,7 +103,7 @@ class ShellModule(object):
''' % dict(path=path)
return self._encode_script(script)
def build_module_command(self, env_string, shebang, cmd, args_path=None, rm_tmp=None):
def build_module_command(self, env_string, shebang, cmd, arg_path=None, rm_tmp=None):
cmd_parts = shlex.split(to_bytes(cmd), posix=False)
cmd_parts = map(to_unicode, cmd_parts)
if shebang and shebang.lower() == '#!powershell':