From 0f43fa984025dbfcaab79b9c4175d9cd55fb0403 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 24 Jan 2007 10:01:25 +0000 Subject: [PATCH] fix call to self --- src/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index 19d6ce564..28dcb6407 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -451,7 +451,7 @@ class RosterWindow: groups = [_('Transports')], show = 'offline', status = 'offline', sub = 'from') gajim.contacts.add_contact(account, c) - gajim.interface.roster.add_contact_to_roster(transport, account) + self.add_contact_to_roster(transport, account) def really_remove_contact(self, contact, account): if not gajim.interface.instances.has_key(account):