Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Fix tag parsing for network interface objects. Unbreaks many methods,
Browse files Browse the repository at this point in the history
get_all_network_interfaces for example.
  • Loading branch information
nakedible-p committed Mar 29, 2012
1 parent 5e3976b commit c22c3b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions boto/ec2/networkinterface.py
Expand Up @@ -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
Expand Down

0 comments on commit c22c3b1

Please sign in to comment.