From 58043c646db2bbbf5f65cb43c2d02254fdb82e60 Mon Sep 17 00:00:00 2001
From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13"
 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>
Date: Thu, 5 Aug 2010 22:24:51 +0000
Subject: oups :p

---
 src/gui.py | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/gui.py b/src/gui.py
index 1568efca..0906c898 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -354,14 +354,14 @@ class Gui(object):
             room = self.get_room_by_name('Info')
         code = error.getAttr('code')
         typ = error.getAttr('type')
-        # if error.getTag('text'):
-        #     body = error.getTag('text').getData()
-        # else: # No description of the error is provided in the stanza
-        #     # If it's a standard error, use our own messages
-        if code in ERROR_AND_STATUS_CODES.keys():
-            body = ERROR_AND_STATUS_CODES[code]
-        else:
-            body = _('Unknown error')
+        if error.getTag('text'):
+            body = error.getTag('text').getData()
+        else: # No description of the error is provided in the stanza
+            # If it's a standard error, use our own messages
+            if code in ERROR_AND_STATUS_CODES.keys():
+                body = ERROR_AND_STATUS_CODES[code]
+            else:
+                body = _('Unknown error')
         self.add_message_to_room(room, _('Error: %(code)s-%(msg)s: %(body)s' %
                                    {'msg':msg, 'code':code, 'body':body}))
         if code == '401':
-- 
cgit v1.2.3