diff --git a/lib/ansible/runner/connection_plugins/jail.py b/lib/ansible/runner/connection_plugins/jail.py index 7c34a284f3..b750874f06 100644 --- a/lib/ansible/runner/connection_plugins/jail.py +++ b/lib/ansible/runner/connection_plugins/jail.py @@ -126,7 +126,7 @@ class Connection(object): def put_file(self, in_path, out_path): ''' transfer a file from local to chroot ''' - out_path = self._normalize_path(out_path, self.get_jail_path() ) + out_path = self._normalize_path(out_path, self.get_jail_path()) vvv("PUT %s TO %s" % (in_path, out_path), host=self.jail) self._copy_file(in_path, out_path)