summaryrefslogtreecommitdiff
path: root/sleekxmpp/stanza/rootstanza.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-12-17 13:11:03 -0500
committerLance Stout <lancestout@gmail.com>2010-12-17 13:11:03 -0500
commit34c374a1e1dad468869c8e5dc6fb2ea7b1d90c7e (patch)
tree450f0d6a299effe6facd3ab82956e9da74807dcc /sleekxmpp/stanza/rootstanza.py
parent506eccf84d86ccf428e1edd8092fdac46f1633fe (diff)
downloadslixmpp-34c374a1e1dad468869c8e5dc6fb2ea7b1d90c7e.tar.gz
slixmpp-34c374a1e1dad468869c8e5dc6fb2ea7b1d90c7e.tar.bz2
slixmpp-34c374a1e1dad468869c8e5dc6fb2ea7b1d90c7e.tar.xz
slixmpp-34c374a1e1dad468869c8e5dc6fb2ea7b1d90c7e.zip
Make tests pass for catching exceptions.
May now use sys.excepthook to catch exceptions from threaded handlers.
Diffstat (limited to 'sleekxmpp/stanza/rootstanza.py')
-rw-r--r--sleekxmpp/stanza/rootstanza.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/stanza/rootstanza.py b/sleekxmpp/stanza/rootstanza.py
index 777314b9..8123c5f8 100644
--- a/sleekxmpp/stanza/rootstanza.py
+++ b/sleekxmpp/stanza/rootstanza.py
@@ -64,7 +64,7 @@ class RootStanza(StanzaBase):
log.exception('Error handling {%s}%s stanza' %
(self.namespace, self.name))
# Finally raise the exception, so it can be handled (or not)
- # at a higher level
+ # at a higher level by using sys.excepthook.
raise e
register_stanza_plugin(RootStanza, Error)