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/01/05 03:18:03 UTC

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

Author: pquerna
Date: Tue Jan  5 02:18:02 2010
New Revision: 895857

URL: http://svn.apache.org/viewvc?rev=895857&view=rev
Log:
Fix indentation for epytext.

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=895857&r1=895856&r2=895857&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/drivers/slicehost.py (original)
+++ incubator/libcloud/trunk/libcloud/drivers/slicehost.py Tue Jan  5 02:18:02 2010
@@ -112,12 +112,11 @@
         """Destroys the node
 
         Requires 'Allow Slices to be deleted or rebuilt from the API' to be
-        ticked at https://manage.slicehost.com/api, otherwise returns:
-
-        <errors>
-          <error>You must enable slice deletes in the SliceManager</error>
-          <error>Permission denied</error>
-        </errors>
+        ticked at https://manage.slicehost.com/api, otherwise returns::
+            <errors>
+              <error>You must enable slice deletes in the SliceManager</error>
+              <error>Permission denied</error>
+            </errors>
         """
         uri = '/slices/%s/destroy.xml' % (node.id)
         ret = self.connection.request(uri, method='PUT')