Standardize args/kwargs on connection plugins.

This commit is contained in:
Michael DeHaan 2013-04-05 14:42:18 -04:00
parent d5d26bab9b
commit 3d25b4a7c0
4 changed files with 4 additions and 4 deletions

View file

@ -43,7 +43,7 @@ SFTP_CONNECTION_CACHE = {}
class Connection(object):
''' SSH based connections with Paramiko '''
def __init__(self, runner, host, port, user, password, private_key_file):
def __init__(self, runner, host, port, user, password, private_key_file, *args, **kwargs):
self.ssh = None
self.sftp = None