diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-06-12 22:33:01 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-06-12 22:33:01 +0000 |
commit | 3a0ff72c7a56ba9478ca60cbc2a695a992c9ed16 (patch) | |
tree | ed0212dd41c327e317f9600eb0fca4819ad64661 /src/gui.py | |
parent | 981e12a669424d5685e11104ad03b82a2aac05cd (diff) | |
download | poezio-3a0ff72c7a56ba9478ca60cbc2a695a992c9ed16.tar.gz poezio-3a0ff72c7a56ba9478ca60cbc2a695a992c9ed16.tar.bz2 poezio-3a0ff72c7a56ba9478ca60cbc2a695a992c9ed16.tar.xz poezio-3a0ff72c7a56ba9478ca60cbc2a695a992c9ed16.zip |
fix an infinie loop on empty line, and the bug with the history message said by a nickname not present anymore
Diffstat (limited to 'src/gui.py')
-rw-r--r-- | src/gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -321,9 +321,9 @@ Avail: Sets your availability to available and (optional) sets your status """ Display the error on the room window """ + # if not error: + # return room = self.get_room_by_name(room) - if not error: - return code = error.getAttr('code') typ = error.getAttr('type') body = error.getTag('text').getData() |