Author: tomaz
Date: Tue May 10 01:40:09 2011
New Revision: 1101286
URL: http://svn.apache.org/viewvc?rev=1101286&view=rev
Log:
oops, also need pass timeout to the parent class here.
Modified:
incubator/libcloud/trunk/libcloud/compute/ssh.py
Modified: incubator/libcloud/trunk/libcloud/compute/ssh.py
URL:
http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/compute/ssh.py?rev=1101286&r1=1101285&r2=1101286&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/compute/ssh.py (original)
+++ incubator/libcloud/trunk/libcloud/compute/ssh.py Tue May 10 01:40:09 2011
@@ -120,7 +120,8 @@ class ParamikoSSHClient(BaseSSHClient):
"""
def __init__(self, hostname, port=22, username='root', password=None,
key=None, timeout=None):
- super(ParamikoSSHClient, self).__init__(hostname, port, username,
password, key)
+ super(ParamikoSSHClient, self).__init__(hostname, port, username,
+ password, key, timeout)
self.client = paramiko.SSHClient()
self.client.set_missing_host_key_policy(paramiko.AutoAddPolicy())