diff options
author | Jonas Bjurel <jonas.bjurel@ericsson.com> | 2016-06-16 10:17:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-06-16 10:17:04 +0000 |
commit | 294150c7f9e36477ff0a25f947fb2c8002999a3b (patch) | |
tree | 2e209676b32026ba2fd282eb4b7917c78049598b /deploy/ssh_client.py | |
parent | 58b6866358c503f6ac588629b705867863523e69 (diff) | |
parent | 1fc07d1d0ad750e6d1049f5b763320db2de1b396 (diff) |
Merge "Introducing collection of all fuel and stack deployment logs."
Diffstat (limited to 'deploy/ssh_client.py')
-rw-r--r-- | deploy/ssh_client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy/ssh_client.py b/deploy/ssh_client.py index df780961f..f6888d52d 100644 --- a/deploy/ssh_client.py +++ b/deploy/ssh_client.py @@ -85,14 +85,14 @@ class SSHClient(object): def scp_get(self, remote, local='.', dir=False): try: - with scp.SCPClient(self.client.get_transport()) as _scp: + with scp.SCPClient(self.client.get_transport(), sanitize=lambda x: x) as _scp: _scp.get(remote, local, dir) except Exception as e: err(e) def scp_put(self, local, remote='.', dir=False): try: - with scp.SCPClient(self.client.get_transport()) as _scp: + with scp.SCPClient(self.client.get_transport(), sanitize=lambda x: x) as _scp: _scp.put(local, remote, dir) except Exception as e: err(e) |