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:
parent
0e0595bdb2
commit
478c400817
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue