diff options
Diffstat (limited to 'contrib/python/podman')
-rw-r--r-- | contrib/python/podman/libs/tunnel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/podman/libs/tunnel.py b/contrib/python/podman/libs/tunnel.py index 534326ff0..42fd3356b 100644 --- a/contrib/python/podman/libs/tunnel.py +++ b/contrib/python/podman/libs/tunnel.py @@ -98,7 +98,7 @@ class Tunnel(object): """Create SSH tunnel from given context.""" cmd = [ 'ssh', - '-nNT', + '-nNTq', '-L', '{}:{}'.format(self.context.local_socket, self.context.remote_socket), |