You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2011/05/10 03:40:09 UTC

svn commit: r1101286 - /incubator/libcloud/trunk/libcloud/compute/ssh.py

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())