Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Fixed handling of whitespace that was breaking EC2 support. Fixes Iss…
Browse files Browse the repository at this point in the history
…ue-31.
  • Loading branch information
Mitch.Garnaat authored and Mitch.Garnaat committed Feb 5, 2007
1 parent c5f8cad commit c8b51fd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions boto/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def __init__(self, root_node, connection):
self.current_text = ''

def startElement(self, name, attrs):
self.current_text = ''
new_node = self.nodes[-1][1].startElement(name, attrs, self.connection)
if new_node != None:
self.nodes.append((name, new_node))
Expand Down

0 comments on commit c8b51fd

Please sign in to comment.