1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Minor pep8 cleanup in the new jail connection plugin

This commit is contained in:
James Cammarata 2013-09-25 14:48:30 -05:00
parent 0e0595bdb2
commit 478c400817

View file

@ -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)