self.name not self [in connection.py]

This commit is contained in:
Nikos Kouremenos 2006-10-02 11:42:26 +00:00
parent 6bab3917b1
commit 7ce1fa4e46
2 changed files with 4 additions and 4 deletions

View File

@ -121,7 +121,7 @@ class Connection(ConnectionHandlers):
def _disconnectedReconnCB(self):
'''Called when we are disconnected'''
gajim.log.debug('disconnectedReconnCB')
if gajim.account_is_connected(self):
if gajim.account_is_connected(self.name):
# we cannot change our status to offline or connecting
# after we auth to server
self.old_show = STATUS_LIST[self.connected]
@ -450,7 +450,7 @@ class Connection(ConnectionHandlers):
# END connect
def quit(self, kill_core):
if kill_core and gajim.account_is_connected(self):
if kill_core and gajim.account_is_connected(self.name):
self.disconnect(on_purpose = True)
def get_privacy_lists(self):
@ -1108,7 +1108,7 @@ class Connection(ConnectionHandlers):
# as a class property as pass it as an argument
def _on_unregister_account_connect(con):
self.on_connect_auth = None
if gajim.account_is_connected(self):
if gajim.account_is_connected(self.name):
hostname = gajim.config.get_per('accounts', self.name, 'hostname')
iq = common.xmpp.Iq(typ = 'set', to = hostname)
q = iq.setTag(common.xmpp.NS_REGISTER + ' query').setTag('remove')

View File

@ -2075,7 +2075,7 @@ _('If "%s" accepts this request you will know his or her status.') % jid)
return True
for acct in gajim.connections:
if not gajim.config.get_per('accounts', acct,
'sync_with_global_status'):
'sync_with_global_status'):
continue
current_show = gajim.SHOW_LIST[gajim.connections[acct].connected]
self.send_status(acct, current_show, message)