diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-12-18 18:54:55 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-12-18 18:54:55 +0000 |
commit | 1c923fcdcc60a90fd6e2ebf09c5d4464f16995fd (patch) | |
tree | 1db05df61d7292b636e2e7a42bc5435a7986e71f | |
parent | c7b021c55d431dc11dbb81ea7b56fcd6323897f1 (diff) | |
download | poezio-1c923fcdcc60a90fd6e2ebf09c5d4464f16995fd.tar.gz poezio-1c923fcdcc60a90fd6e2ebf09c5d4464f16995fd.tar.bz2 poezio-1c923fcdcc60a90fd6e2ebf09c5d4464f16995fd.tar.xz poezio-1c923fcdcc60a90fd6e2ebf09c5d4464f16995fd.zip |
hop, fixed #2068
-rw-r--r-- | src/roster.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/roster.py b/src/roster.py index c03e1e1c..65f62c43 100644 --- a/src/roster.py +++ b/src/roster.py @@ -183,10 +183,9 @@ class RosterGroup(object): def remove_contact(self, contact): """ - Remove a Contact object to the list + Remove a Contact object from the list """ assert isinstance(contact, Contact) - assert contact in self._contacts self._contacts.remove(contact) def add_contact(self, contact): |