Undo event name fix, due to breakage in Py2.x

This commit is contained in:
Lance Stout 2013-12-22 01:10:19 -08:00
parent c183fd5e35
commit df9ad82336

View File

@ -1498,8 +1498,8 @@ class XMLStream(object):
""" """
depth = 0 depth = 0
root = None root = None
for event, xml in ET.iterparse(self.filesocket, ('end', 'start')): for event, xml in ET.iterparse(self.filesocket, (b'end', b'start')):
if event == 'start': if event == b'start':
if depth == 0: if depth == 0:
# We have received the start of the root element. # We have received the start of the root element.
root = xml root = xml
@ -1516,7 +1516,7 @@ class XMLStream(object):
# exponential backoff for new reconnect attempts. # exponential backoff for new reconnect attempts.
self.reconnect_delay = 1.0 self.reconnect_delay = 1.0
depth += 1 depth += 1
if event == 'end': if event == b'end':
depth -= 1 depth -= 1
if depth == 0: if depth == 0:
# The stream's root element has closed, # The stream's root element has closed,