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])


------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn

Reply via email to