Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2008-05-20 18:30:19 +0400
committerYann Leboulanger <asterix@lagaule.org>2008-05-20 18:30:19 +0400
commit21f332221e3774f1558bf3b2b688de736e0ab37f (patch)
treeec84e7ed3415912e115f1debea39e67bf273fa71
parent8bda3a554389ad55f4aa1e65e8c5b7355baa6541 (diff)
typos. see #3953
-rw-r--r--src/common/pep.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/pep.py b/src/common/pep.py
index 32b328d4f..0a0e1cb33 100644
--- a/src/common/pep.py
+++ b/src/common/pep.py
@@ -35,7 +35,7 @@ def user_mood(items, name, jid):
del acc.mood['text']
(user, resource) = gajim.get_room_and_nick_from_fjid(jid)
- for contact in gajim.contacts.get_contacts(name, user)
+ for contact in gajim.contacts.get_contacts(name, user):
if has_child:
if contact.mood.has_key('mood'):
del contact.mood['mood']
@@ -114,7 +114,7 @@ def user_tune(items, name, jid):
del acc.tune['length']
(user, resource) = gajim.get_room_and_nick_from_fjid(jid)
- for contact in gajim.contacts.get_contacts(name, user)
+ for contact in gajim.contacts.get_contacts(name, user):
if has_child:
if contact.tune.has_key('artist'):
del contact.tune['artist']
@@ -196,7 +196,7 @@ def user_activity(items, name, jid):
del acc.activity['text']
(user, resource) = gajim.get_room_and_nick_from_fjid(jid)
- for contact in gajim.contacts.get_contacts(name, user)
+ for contact in gajim.contacts.get_contacts(name, user):
if has_child:
if contact.activity.has_key('activity'):
del contact.activity['activity']
@@ -242,7 +242,7 @@ def user_nickname(items, name, jid):
(user, resource) = gajim.get_room_and_nick_from_fjid(jid)
if has_child:
if nick is not None:
- for contact in gajim.contacts.get_contacts(name, user)
+ for contact in gajim.contacts.get_contacts(name, user):
contact.contact_name = nick
gajim.interface.roster.draw_contact(user, name)
for ctrl in gajim.interface.msg_win_mgr.get_chat_controls(user, name):