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)