xml.etree.ElementTree raises ExpatError instead of SyntaxError or ParseError.

This commit is contained in:
Lance Stout
2012-02-19 20:27:19 -08:00
parent afe0d16797
commit c36073b40e
2 changed files with 7 additions and 3 deletions

View File

@@ -31,6 +31,8 @@ try:
except ImportError:
import Queue as queue
from xml.parsers.expat import ExpatError
import sleekxmpp
from sleekxmpp.thirdparty.statemachine import StateMachine
from sleekxmpp.xmlstream import Scheduler, tostring
@@ -1241,7 +1243,7 @@ class XMLStream(object):
except SystemExit:
log.debug("SystemExit in _process")
shutdown = True
except SyntaxError as e:
except (SyntaxError, ExpatError) as e:
log.error("Error reading from XML stream.")
self.exception(e)
except Socket.error as serr: