[tuxdroid-svn] r4809 - software_suite_v3/software/plugin/plugin-msn/trunk/executables
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-06-14 18:08:53
|
Author: remi
Date: 2009-06-14 20:08:47 +0200 (Sun, 14 Jun 2009)
New Revision: 4809
Modified:
software_suite_v3/software/plugin/plugin-msn/trunk/executables/plugin-msn.py
Log:
* convert message to lowercase before to search imoticons inside
Modified: software_suite_v3/software/plugin/plugin-msn/trunk/executables/plugin-msn.py
===================================================================
--- software_suite_v3/software/plugin/plugin-msn/trunk/executables/plugin-msn.py 2009-06-14 18:07:14 UTC (rev 4808)
+++ software_suite_v3/software/plugin/plugin-msn/trunk/executables/plugin-msn.py 2009-06-14 18:08:47 UTC (rev 4809)
@@ -88,7 +88,7 @@
return
# Search for emoticon
for emoticon in EMOTICONS_TO_ATTITUNES.keys():
- if message.find(emoticon) != -1:
+ if message.lower().find(emoticon) != -1:
self.throwNotification("start")
self.throwActuation("playAttitune",
EMOTICONS_TO_ATTITUNES[emoticon])
|