Changeset 9691

Show
Ignore:
Timestamp:
05/20/08 16:30:19 (2 months ago)
Author:
asterix
Message:

typos. see #3953

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/common/pep.py

    r9690 r9691  
    3636 
    3737        (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): 
    3939                if has_child: 
    4040                        if contact.mood.has_key('mood'): 
     
    115115 
    116116        (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): 
    118118                if has_child: 
    119119                        if contact.tune.has_key('artist'): 
     
    197197 
    198198        (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): 
    200200                if has_child: 
    201201                        if contact.activity.has_key('activity'): 
     
    243243        if has_child: 
    244244                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): 
    246246                                contact.contact_name = nick 
    247247                        gajim.interface.roster.draw_contact(user, name)