From 478c400817e91e0769ab2b8fe2b5c50a57939fbc Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Wed, 25 Sep 2013 14:48:30 -0500 Subject: [PATCH] Minor pep8 cleanup in the new jail connection plugin --- lib/ansible/runner/connection_plugins/jail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)