summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2015-10-02 19:55:32 -0700
committerToshio Kuratomi <a.badger@gmail.com>2015-10-02 19:55:32 -0700
commit613e87db6c9e83c604157ab96d8b8be5c814b042 (patch)
treebd296e1c1d78939d5d360f9af555cbf412b0243d
parent5680a9fa3291a5d0f0f82a1e01b980e0868620e7 (diff)
downloadansible-613e87db6c9e83c604157ab96d8b8be5c814b042.tar.gz
FIx typo arg_path (not plural)
-rw-r--r--lib/ansible/plugins/shell/powershell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/plugins/shell/powershell.py b/lib/ansible/plugins/shell/powershell.py
index de82fbfe1b..ead0c02fa6 100644
--- a/lib/ansible/plugins/shell/powershell.py
+++ b/lib/ansible/plugins/shell/powershell.py
@@ -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':