Commit 99616d0c by Michael DeHaan

Pass scrub_data by default, see response from DO here: https://www.digitalocean.com/blog

parent c45f1662
...@@ -221,7 +221,7 @@ class Droplet(JsonfyMixIn): ...@@ -221,7 +221,7 @@ class Droplet(JsonfyMixIn):
raise TimeoutError('Wait for droplet running timeout', self.id) raise TimeoutError('Wait for droplet running timeout', self.id)
def destroy(self): def destroy(self):
return self.manager.destroy_droplet(self.id) return self.manager.destroy_droplet(self.id, scrub_data=True)
@classmethod @classmethod
def setup(cls, client_id, api_key): def setup(cls, client_id, api_key):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment