This commit is contained in:
Yann Leboulanger 2005-10-11 16:35:33 +00:00
parent c788403766
commit d3089ffa8c
1 changed files with 2 additions and 1 deletions

View File

@ -202,7 +202,8 @@ class RosterWindow:
if group in gajim.contacts[account][jid][0].groups:
break
else:
del gajim.groups[account][group]
if gajim.groups[account].has_key(group):
del gajim.groups[account][group]
def get_appropriate_state_images(self, jid):
'''check jid and return the appropriate state images dict'''