[tuxdroid-svn] r4967 - software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/ugc
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-07-01 11:27:43
|
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
|