summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-11-24 06:03:51 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-11-24 06:03:51 +0000
commitc1a62ac8978484fc5ef0100f1d1edada2c01be3e (patch)
treed23c5c86b649b73d6932edbfb3e7a13647cbc227 /src
parente1ed45ae5f4583c98fa32ac80349eaa59933f756 (diff)
downloadpoezio-c1a62ac8978484fc5ef0100f1d1edada2c01be3e.tar.gz
poezio-c1a62ac8978484fc5ef0100f1d1edada2c01be3e.tar.bz2
poezio-c1a62ac8978484fc5ef0100f1d1edada2c01be3e.tar.xz
poezio-c1a62ac8978484fc5ef0100f1d1edada2c01be3e.zip
fix the comment, too
Diffstat (limited to 'src')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index 82fae234..fdb77343 100644
--- a/src/core.py
+++ b/src/core.py
@@ -420,7 +420,7 @@ class Core(object):
# Differentiate both type of messages, and call the appropriate handler.
jid_from = message['from']
for tab in self.tabs:
- if tab.get_name() == jid_from.full: # check all the MUC we are in
+ if tab.get_name() == jid_from.full:
if message['type'] == 'error':
return self.room_error(message, tab.get_room().name)
else: