[tuxdroid-svn] r4564 - softwares_suite_v3/community/script/pidgin/trunk
Status: Beta
Brought to you by:
ks156
|
From: Gwadavel <c2m...@c2...> - 2009-04-20 13:00:48
|
Author: Gwadavel
Date: 2009-04-20 15:00:24 +0200 (Mon, 20 Apr 2009)
New Revision: 4564
Modified:
softwares_suite_v3/community/script/pidgin/trunk/tux_pidgin.py
Log:
error with alias CIA and commit message
Modified: softwares_suite_v3/community/script/pidgin/trunk/tux_pidgin.py
===================================================================
--- softwares_suite_v3/community/script/pidgin/trunk/tux_pidgin.py 2009-04-18 15:45:22 UTC (rev 4563)
+++ softwares_suite_v3/community/script/pidgin/trunk/tux_pidgin.py 2009-04-20 13:00:24 UTC (rev 4564)
@@ -181,12 +181,12 @@
alias = purple.PurpleBuddyGetAlias(buddy)
else:
alias = name
- if tgp_cia and alias[:3].upper() == "CIA":
- text = LANGUAGE["commit"]
- else:
- MessageP = MessageParser()
- message = MessageP.strip(message)
- text = "%s %s %s" % (alias, LANGUAGE["say"], message)
+ if tgp_cia and alias[:3].upper() == "CIA":
+ text = LANGUAGE["commit"]
+ else:
+ MessageP = MessageParser()
+ message = MessageP.strip(message)
+ text = "%s %s %s" % (alias, LANGUAGE["say"], message)
text = text.encode('utf-8')
tux_speak(text)
|