Fix wrong var name.

This commit is contained in:
Yann Leboulanger 2006-10-02 23:51:50 +00:00
parent aa3230814c
commit 59374a1e39
1 changed files with 3 additions and 3 deletions

View File

@ -2420,10 +2420,10 @@ _('If "%s" accepts this request you will know his or her status.') % jid)
if not gajim.config.get_per('accounts', account,
'sync_with_global_status'):
continue
if not gajim.connections[acct].connected:
if not gajim.connections[account].connected:
continue
current_show = gajim.SHOW_LIST[gajim.connections[acct].connected]
self.send_status(acct, current_show, status_message)
current_show = gajim.SHOW_LIST[gajim.connections[account].connected]
self.send_status(account, current_show, status_message)
def update_status_combobox(self):