mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-24 03:00:15 +00:00
Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop
This commit is contained in:
commit
506eccf84d
1 changed files with 10 additions and 9 deletions
|
@ -54,16 +54,17 @@ class RootStanza(StanzaBase):
|
||||||
e.extension_args)
|
e.extension_args)
|
||||||
self['error'].append(extxml)
|
self['error'].append(extxml)
|
||||||
self['error']['type'] = e.etype
|
self['error']['type'] = e.etype
|
||||||
|
self.send()
|
||||||
else:
|
else:
|
||||||
# We probably didn't raise this on purpose, so send a traceback
|
# We probably didn't raise this on purpose, so send an error stanza
|
||||||
self['error']['condition'] = 'undefined-condition'
|
self['error']['condition'] = 'undefined-condition'
|
||||||
if sys.version_info < (3, 0):
|
|
||||||
self['error']['text'] = "SleekXMPP got into trouble."
|
self['error']['text'] = "SleekXMPP got into trouble."
|
||||||
else:
|
self.send()
|
||||||
self['error']['text'] = traceback.format_tb(e.__traceback__)
|
# log the error
|
||||||
log.exception('Error handling {%s}%s stanza' %
|
log.exception('Error handling {%s}%s stanza' %
|
||||||
(self.namespace, self.name))
|
(self.namespace, self.name))
|
||||||
self.send()
|
# Finally raise the exception, so it can be handled (or not)
|
||||||
|
# at a higher level
|
||||||
|
raise e
|
||||||
|
|
||||||
register_stanza_plugin(RootStanza, Error)
|
register_stanza_plugin(RootStanza, Error)
|
||||||
|
|
Loading…
Reference in a new issue