diff --git a/boto/ec2/networkinterface.py b/boto/ec2/networkinterface.py index a9ec1d2884..2658e3fcef 100644 --- a/boto/ec2/networkinterface.py +++ b/boto/ec2/networkinterface.py @@ -111,6 +111,9 @@ def __repr__(self): return 'NetworkInterface:%s' % self.id def startElement(self, name, attrs, connection): + retval = TaggedEC2Object.startElement(self, name, attrs, connection) + if retval is not None: + return retval if name == 'groupSet': self.groups = ResultSet([('item', Group)]) return self.groups