Author: remi
Date: 2009-07-01 13:26:36 +0200 (Wed, 01 Jul 2009)
New Revision: 4967

Modified:
   
software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/ugc/Ugc.py
Log:
* Fixed a bug with command names.

Modified: 
software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/ugc/Ugc.py
===================================================================
--- 
software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/ugc/Ugc.py
   2009-07-01 11:17:13 UTC (rev 4966)
+++ 
software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/ugc/Ugc.py
   2009-07-01 11:26:36 UTC (rev 4967)
@@ -292,7 +292,7 @@
         @return: The command object as PluginCommand or None.
         """
         for command in self.__parentGadget.getCommands():
-            if command.getName() == commandName:
+            if command.getName().lower() == commandName:
                 return command
         return None
 


------------------------------------------------------------------------------
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn

Reply via email to