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/04/07 13:35:39 UTC

svn commit: r1089832 - /incubator/libcloud/trunk/libcloud/utils.py

Author: tomaz
Date: Thu Apr  7 11:35:39 2011
New Revision: 1089832

URL: http://svn.apache.org/viewvc?rev=1089832&view=rev
Log:
Oops, self shouldn't be here.

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

Modified: incubator/libcloud/trunk/libcloud/utils.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/utils.py?rev=1089832&r1=1089831&r2=1089832&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/utils.py (original)
+++ incubator/libcloud/trunk/libcloud/utils.py Thu Apr  7 11:35:39 2011
@@ -170,10 +170,10 @@ def fixxpath(xpath, namespace):
 def findtext(element, xpath, namespace):
     return element.findtext(fixxpath(xpath=xpath, namespace=namespace))
 
-def findattr(self, element, xpath, namespace):
+def findattr(element, xpath, namespace):
     return element.findtext(fixxpath(xpath=xpath, namespace=namespace))
 
-def findall(self, element, xpath, namespace):
+def findall(element, xpath, namespace):
     return element.findall(fixxpath(xpath=xpath, namespace=namespace))
 
 def get_driver(drivers, provider):