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:
authorAlexander Cherniuk <ts33kr@gmail.com>2010-05-25 11:26:42 +0400
committerAlexander Cherniuk <ts33kr@gmail.com>2010-05-25 11:26:42 +0400
commit8785db94788fc846be8673fd5704a4bfa93ad1f0 (patch)
treeab39a45c9aabd1425e49ae09abc6ec02a8845e5c
parentced4db430ca6e42d62bdc319548adbdf9602b68a (diff)
Removed an excess lambda
-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 7cd514ee3..26b05e47f 100644
--- a/src/message_window.py
+++ b/src/message_window.py
@@ -144,7 +144,7 @@ class MessageWindow(object):
self.notebook.set_show_border(gajim.config.get('tabs_border'))
self.show_icon()
- gobject.idle_add(lambda: self.notebook.grab_focus())
+ gobject.idle_add(self.notebook.grab_focus)
def change_account_name(self, old_name, new_name):
if old_name in self._controls: