Changeset 9691
- Timestamp:
- 05/20/08 16:30:19 (2 months ago)
- Files:
-
- trunk/src/common/pep.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/common/pep.py
r9690 r9691 36 36 37 37 (user, resource) = gajim.get_room_and_nick_from_fjid(jid) 38 for contact in gajim.contacts.get_contacts(name, user) 38 for contact in gajim.contacts.get_contacts(name, user): 39 39 if has_child: 40 40 if contact.mood.has_key('mood'): … … 115 115 116 116 (user, resource) = gajim.get_room_and_nick_from_fjid(jid) 117 for contact in gajim.contacts.get_contacts(name, user) 117 for contact in gajim.contacts.get_contacts(name, user): 118 118 if has_child: 119 119 if contact.tune.has_key('artist'): … … 197 197 198 198 (user, resource) = gajim.get_room_and_nick_from_fjid(jid) 199 for contact in gajim.contacts.get_contacts(name, user) 199 for contact in gajim.contacts.get_contacts(name, user): 200 200 if has_child: 201 201 if contact.activity.has_key('activity'): … … 243 243 if has_child: 244 244 if nick is not None: 245 for contact in gajim.contacts.get_contacts(name, user) 245 for contact in gajim.contacts.get_contacts(name, user): 246 246 contact.contact_name = nick 247 247 gajim.interface.roster.draw_contact(user, name)
