From 183d59333fcc4d8c62ff0dac7264ef9300f84eb4 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Mon, 7 Nov 2005 14:06:39 +0000 Subject: [PATCH] fix missing var --- src/systray.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/systray.py b/src/systray.py index d7b7cbf00..4fb14247a 100644 --- a/src/systray.py +++ b/src/systray.py @@ -351,6 +351,7 @@ class Systray: def on_change_status_message_activate(self, widget): model = gajim.interface.roster.status_combobox.get_model() + active = gajim.interface.roster.status_combobox.get_active() status = model[active][2].decode('utf-8') dlg = dialogs.ChangeStatusMessageDialog(status) message = dlg.run()