some space in some comments

This commit is contained in:
Yann Leboulanger 2008-01-01 04:58:51 +00:00
parent 30ad68a26c
commit 2ced6413f0
1 changed files with 4 additions and 4 deletions

View File

@ -1307,18 +1307,18 @@ class RosterWindow:
gajim.contacts.clear_contacts(account) gajim.contacts.clear_contacts(account)
for jid in array.keys(): for jid in array.keys():
jids = jid.split('/') jids = jid.split('/')
#get jid # get jid
ji = jids[0] ji = jids[0]
#get resource # get resource
resource = '' resource = ''
if len(jids) > 1: if len(jids) > 1:
resource = '/'.join(jids[1:]) resource = '/'.join(jids[1:])
#get name # get name
name = array[jid]['name'] name = array[jid]['name']
if not name: if not name:
name = '' name = ''
show = 'offline' # show is offline by default show = 'offline' # show is offline by default
status = '' #no status message by default status = '' # no status message by default
keyID = '' keyID = ''
attached_keys = gajim.config.get_per('accounts', account, attached_keys = gajim.config.get_per('accounts', account,