summaryrefslogtreecommitdiff
path: root/boto/ec2/ec2object.py
diff options
context:
space:
mode:
Diffstat (limited to 'boto/ec2/ec2object.py')
-rw-r--r--boto/ec2/ec2object.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/ec2/ec2object.py b/boto/ec2/ec2object.py
index 265678c6..f697e664 100644
--- a/boto/ec2/ec2object.py
+++ b/boto/ec2/ec2object.py
@@ -53,7 +53,7 @@ class TaggedEC2Object(EC2Object):
"""
def __init__(self, connection=None):
- EC2Object.__init__(self, connection)
+ super(TaggedEC2Object, self).__init__(connection)
self.tags = TagSet()
def startElement(self, name, attrs, connection):