Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2009-09-15 21:49:56 +0400
committerYann Leboulanger <asterix@lagaule.org>2009-09-15 21:49:56 +0400
commitda2984434289d317da4d2f708a9cff81f362ed29 (patch)
tree079dfc93fc0330884f747ac532d2d996cea2dbb0
parent651e801334da40bd947006b9542529e21d24a56f (diff)
[Dicson] fix typo. Fixes #5267
-rw-r--r--src/message_window.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/message_window.py b/src/message_window.py
index 5b27ee421..9e4bc725c 100644
--- a/src/message_window.py
+++ b/src/message_window.py
@@ -165,7 +165,7 @@ class MessageWindow(object):
if old_jid not in self._controls[account]:
return
self._controls[account][new_jid] = self._controls[account][old_jid]
- del self._controls[account][old_jid]
+ del self._controls[account][old_jid]
def get_num_controls(self):
return sum(len(d) for d in self._controls.values())