From 5f435deb450a148c6a4abe882360e15053ad5dd3 Mon Sep 17 00:00:00 2001 From: kyleknap Date: Wed, 8 Oct 2014 11:53:29 -0700 Subject: Fix ec2 release_address for ``allocation_id`` --- boto/ec2/address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boto/ec2/address.py b/boto/ec2/address.py index 0cbadbd2..807406f7 100644 --- a/boto/ec2/address.py +++ b/boto/ec2/address.py @@ -79,7 +79,7 @@ class Address(EC2Object): """ if self.allocation_id: return self.connection.release_address( - association_id=self.allocation_id, + allocation_id=self.allocation_id, dry_run=dry_run) else: return self.connection.release_address( -- cgit v1.2.1