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

Fix variable name in paramiko connection plugin

This commit is contained in:
Matt Martz 2016-02-29 10:12:17 -06:00
parent 7c3a728557
commit d0a717694f

View file

@ -149,7 +149,7 @@ class Connection(ConnectionBase):
getattr(self._play_context, 'ssh_common_args', ''),
getattr(self._play_context, 'ssh_args', ''),
]
if ssh_common_args is not None:
if ssh_args is not None:
args = self._split_ssh_args(' '.join(ssh_args))
for i, arg in enumerate(args):
if arg.lower() == 'proxycommand':