[tuxdroid-svn] r4789 - software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugi
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-06-11 13:59:59
|
Author: remi
Date: 2009-06-11 15:59:46 +0200 (Thu, 11 Jun 2009)
New Revision: 4789
Modified:
software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugin/PluginParameter.py
Log:
* fixed a bug with the default value
Modified: software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugin/PluginParameter.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugin/PluginParameter.py 2009-06-11 13:16:44 UTC (rev 4788)
+++ software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugin/PluginParameter.py 2009-06-11 13:59:46 UTC (rev 4789)
@@ -130,6 +130,8 @@
"""Get the default value.
@return: A string.
"""
+ if self.__defaultValue == {}:
+ return ""
if language == None:
return self.__defaultValue
else:
|