From 6f5ebb4489394fdd6520c14d5dc60dd0fa4e71f2 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Fri, 5 Jun 2015 16:02:29 -0500 Subject: [PATCH] Fix syntax error in winrm --- lib/ansible/plugins/connections/winrm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/connections/winrm.py b/lib/ansible/plugins/connections/winrm.py index 2bc1ee00539..f2624e5b1ac 100644 --- a/lib/ansible/plugins/connections/winrm.py +++ b/lib/ansible/plugins/connections/winrm.py @@ -153,7 +153,7 @@ class Connection(ConnectionBase): return self def exec_command(self, cmd, tmp_path, executable='/bin/sh', in_data=None): - super(Connection, self).exec_command(cmd, tmp_path, executable=executable, in_data,in_data) + super(Connection, self).exec_command(cmd, tmp_path, executable=executable, in_data=in_data) cmd = cmd.encode('utf-8') cmd_parts = shlex.split(cmd, posix=False)