Mercurial > libervia-backend
diff frontends/wix/contact_list.py @ 75:7322a41f8a8e
Basic user joined/left management
- plugin XEP-0045: user joined./left signal is sended
- wix: user are adder/removed when these signals are catched
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 29 Mar 2010 16:54:53 +1100 |
parents | f271fff3a713 |
children | 961e0898271f |
line wrap: on
line diff
--- a/frontends/wix/contact_list.py Wed Mar 24 16:50:53 2010 +1100 +++ b/frontends/wix/contact_list.py Mon Mar 29 16:54:53 2010 +1100 @@ -137,7 +137,7 @@ """remove a contact from the list""" debug (_("removing %s"), contact) list_idx = self.__find_idx(contact) - list_idx.reverse() #we me make some deletions, we have to reverse the order + list_idx.reverse() #as we make some deletions, we have to reverse the order for i in list_idx: self.Delete(i)