You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by je...@apache.org on 2010/05/06 21:01:02 UTC

svn commit: r941854 - /incubator/libcloud/trunk/libcloud/ssh.py

Author: jerry
Date: Thu May  6 19:01:01 2010
New Revision: 941854

URL: http://svn.apache.org/viewvc?rev=941854&view=rev
Log:
Remove unused IOError exception var

Modified:
    incubator/libcloud/trunk/libcloud/ssh.py

Modified: incubator/libcloud/trunk/libcloud/ssh.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/ssh.py?rev=941854&r1=941853&r2=941854&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/ssh.py (original)
+++ incubator/libcloud/trunk/libcloud/ssh.py Thu May  6 19:01:01 2010
@@ -135,8 +135,8 @@ class ParamikoSSHClient(BaseSSHClient):
             if part != "":
                 try:
                     sftp.mkdir(part)
-                except IOError, e:
-                    # so, there doens't seem to be a way to
+                except IOError:
+                    # so, there doesn't seem to be a way to
                     # catch EEXIST consistently *sigh*
                     pass
                 sftp.chdir(part)