You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/08/13 02:42:34 UTC

svn commit: r985056 - /incubator/libcloud/trunk/libcloud/drivers/rackspace.py

Author: pquerna
Date: Fri Aug 13 00:42:34 2010
New Revision: 985056

URL: http://svn.apache.org/viewvc?rev=985056&view=rev
Log:
Fix mistake in previous commit, object is a builtin type, so pyflakes didn't notice that I renamed the variable to body before here.

Modified:
    incubator/libcloud/trunk/libcloud/drivers/rackspace.py

Modified: incubator/libcloud/trunk/libcloud/drivers/rackspace.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py?rev=985056&r1=985055&r2=985056&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/drivers/rackspace.py (original)
+++ incubator/libcloud/trunk/libcloud/drivers/rackspace.py Fri Aug 13 00:42:34 2010
@@ -67,7 +67,7 @@ class RackspaceResponse(Response):
         try:
             text = "; ".join([ err.text or ''
                                for err in
-                               object.getiterator()
+                               body.getiterator()
                                if err.text])
         except ExpatError:
             text = self.body