summaryrefslogtreecommitdiff
path: root/boto/ec2/address.py
diff options
context:
space:
mode:
authorDaniel Lindsley <daniel@toastdriven.com>2013-12-19 23:01:20 -0800
committerDaniel Lindsley <daniel@toastdriven.com>2013-12-23 12:18:08 -0800
commit39a997fcd9eabc7b8114e2b5359669c16af4874a (patch)
treec085e42adf36b636817a5114f46addb760872a03 /boto/ec2/address.py
parent45e18847fd2e46a980242065cff698ba61504e95 (diff)
downloadboto-39a997fcd9eabc7b8114e2b5359669c16af4874a.tar.gz
Updated all old-style inheritance calls.
Diffstat (limited to 'boto/ec2/address.py')
-rw-r--r--boto/ec2/address.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/ec2/address.py b/boto/ec2/address.py
index 27608a4a..3b82d115 100644
--- a/boto/ec2/address.py
+++ b/boto/ec2/address.py
@@ -37,7 +37,7 @@ class Address(EC2Object):
"""
def __init__(self, connection=None, public_ip=None, instance_id=None):
- EC2Object.__init__(self, connection)
+ super(Address, self).__init__(connection)
self.connection = connection
self.public_ip = public_ip
self.instance_id = instance_id