[tuxdroid-svn] r4641 - software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugi
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-05-05 14:30:06
|
Author: remi
Date: 2009-05-05 16:29:50 +0200 (Tue, 05 May 2009)
New Revision: 4641
Modified:
software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugin/interpreters/PluginInterpreter.py
Log:
* message head on plugin exit is now "plugin"
Modified: software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugin/interpreters/PluginInterpreter.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugin/interpreters/PluginInterpreter.py 2009-05-05 14:17:01 UTC (rev 4640)
+++ software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/plugin/interpreters/PluginInterpreter.py 2009-05-05 14:29:50 UTC (rev 4641)
@@ -243,7 +243,7 @@
continue
if line[-1] == "\r":
line = line[:-1]
- if line.lower().find("gadget") == 0:
+ if line.lower().find("plugin") == 0:
if line.lower().find("'exit'") != -1:
self.abort()
if self.__getRun():
|