http://git-wip-us.apache.org/repos/asf/libcloud/blob/c3091843/libcloud/utils/xml.py
----------------------------------------------------------------------
diff --git a/libcloud/utils/xml.py b/libcloud/utils/xml.py
index 7b695d1..3a34d84 100644
--- a/libcloud/utils/xml.py
+++ b/libcloud/utils/xml.py
@@ -25,7 +25,6 @@ def fixxpath(xpath, namespace=None):
     # ElementTree wants namespaces in its xpaths, so here we add them.
     if not namespace:
         return xpath
-    path = '/'.join(['{%s}%s' % (namespace, e) for e in xpath.split('/')])
     return '/'.join(['{%s}%s' % (namespace, e) for e in xpath.split('/')])
 
 

Reply via email to