This commit is contained in:
Yann Leboulanger 2005-12-30 11:44:28 +00:00
parent 3522c89b31
commit 9eeecca91c
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ class Contacts:
'''Removes all contacts for a given jid'''
if not self._contacts.has_key(account):
return
if not self._contacts[account].has_key(contact.jid):
if not self._contacts[account].has_key(jid):
return
del self._contacts[account][jid]