Browse code

FIx typo arg_path (not plural)

Toshio Kuratomi authored on 2015/10/03 11:55:32
Showing 1 changed files
... ...
@@ -103,7 +103,7 @@ class ShellModule(object):
103 103
         ''' % dict(path=path)
104 104
         return self._encode_script(script)
105 105
 
106
-    def build_module_command(self, env_string, shebang, cmd, args_path=None, rm_tmp=None):
106
+    def build_module_command(self, env_string, shebang, cmd, arg_path=None, rm_tmp=None):
107 107
         cmd_parts = shlex.split(to_bytes(cmd), posix=False)
108 108
         cmd_parts = map(to_unicode, cmd_parts)
109 109
         if shebang and shebang.lower() == '#!powershell':