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:15 UTC

svn commit: r941857 - /incubator/libcloud/trunk/libcloud/drivers/slicehost.py

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

URL: http://svn.apache.org/viewvc?rev=941857&view=rev
Log:
Remove assignment of unused return value

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

Modified: incubator/libcloud/trunk/libcloud/drivers/slicehost.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/slicehost.py?rev=941857&r1=941856&r2=941857&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/drivers/slicehost.py (original)
+++ incubator/libcloud/trunk/libcloud/drivers/slicehost.py Thu May  6 19:01:14 2010
@@ -146,7 +146,7 @@ class SlicehostNodeDriver(NodeDriver):
             </errors>
         """
         uri = '/slices/%s/destroy.xml' % (node.id)
-        ret = self.connection.request(uri, method='PUT')
+        self.connection.request(uri, method='PUT')
         return True
 
     def _to_nodes(self, object):