oups :p
This commit is contained in:
parent
b7f87a52db
commit
58043c646d
1 changed files with 8 additions and 8 deletions
16
src/gui.py
16
src/gui.py
|
@ -354,14 +354,14 @@ class Gui(object):
|
||||||
room = self.get_room_by_name('Info')
|
room = self.get_room_by_name('Info')
|
||||||
code = error.getAttr('code')
|
code = error.getAttr('code')
|
||||||
typ = error.getAttr('type')
|
typ = error.getAttr('type')
|
||||||
# if error.getTag('text'):
|
if error.getTag('text'):
|
||||||
# body = error.getTag('text').getData()
|
body = error.getTag('text').getData()
|
||||||
# else: # No description of the error is provided in the stanza
|
else: # No description of the error is provided in the stanza
|
||||||
# # If it's a standard error, use our own messages
|
# If it's a standard error, use our own messages
|
||||||
if code in ERROR_AND_STATUS_CODES.keys():
|
if code in ERROR_AND_STATUS_CODES.keys():
|
||||||
body = ERROR_AND_STATUS_CODES[code]
|
body = ERROR_AND_STATUS_CODES[code]
|
||||||
else:
|
else:
|
||||||
body = _('Unknown error')
|
body = _('Unknown error')
|
||||||
self.add_message_to_room(room, _('Error: %(code)s-%(msg)s: %(body)s' %
|
self.add_message_to_room(room, _('Error: %(code)s-%(msg)s: %(body)s' %
|
||||||
{'msg':msg, 'code':code, 'body':body}))
|
{'msg':msg, 'code':code, 'body':body}))
|
||||||
if code == '401':
|
if code == '401':
|
||||||
|
|
Loading…
Reference in a new issue