Skip to content

Commit

Permalink
Fix parsing of ELB policies, found while fixing bug boto#755
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbrowne committed May 17, 2012
1 parent 73bd915 commit 06f95da
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions boto/ec2/elb/policies.py
Expand Up @@ -78,9 +78,11 @@ def startElement(self, name, attrs, connection):
if name == 'AppCookieStickinessPolicies':
rs = ResultSet([('member', AppCookieStickinessPolicy)])
self.app_cookie_stickiness_policies = rs
return rs
elif name == 'LBCookieStickinessPolicies':
rs = ResultSet([('member', LBCookieStickinessPolicy)])
self.lb_cookie_stickiness_policies = rs
return rs

def endElement(self, name, value, connection):
return
Expand Down

0 comments on commit 06f95da

Please sign in to comment.