From 908a4782d46fec77c28f313f1b5eaad95f7a5336 Mon Sep 17 00:00:00 2001 From: Stefan Bethge Date: Tue, 13 Jun 2006 22:50:18 +0000 Subject: [PATCH] add bookmarks variable again (for right click account menu) --- src/common/connection_zeroconf.py | 2 +- src/gajim.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/connection_zeroconf.py b/src/common/connection_zeroconf.py index 39260a303..5fd0506a4 100644 --- a/src/common/connection_zeroconf.py +++ b/src/common/connection_zeroconf.py @@ -66,7 +66,7 @@ class ConnectionZeroconf(ConnectionHandlersZeroconf): #self.time_to_reconnect = None #self.new_account_info = None - #self.bookmarks = [] + self.bookmarks = [] self.on_purpose = False #self.last_io = gajim.idlequeue.current_time() diff --git a/src/gajim.py b/src/gajim.py index cf3a7e758..63b5dcb6c 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -1741,7 +1741,6 @@ class Interface: self.register_handlers() for account in gajim.config.get_per('accounts'): if account == 'zeroconf': - print 'Added zeroconf account to list' gajim.connections[account] = common.connection_zeroconf.ConnectionZeroconf(account) else: gajim.connections[account] = common.connection.Connection(account)