[tuxdroid-svn] r4864 - software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_i
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-06-23 10:17:15
|
Author: remi
Date: 2009-06-23 12:16:23 +0200 (Tue, 23 Jun 2009)
New Revision: 4864
Modified:
software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_interactions/00_resourceRobotContentInteractions.py
Log:
* fixed a bug with contexts (Background context unpaused after alert)
Modified: software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_interactions/00_resourceRobotContentInteractions.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_interactions/00_resourceRobotContentInteractions.py 2009-06-23 10:14:55 UTC (rev 4863)
+++ software_suite_v3/smart-core/smart-server/trunk/resources/04_robot_content_interactions/00_resourceRobotContentInteractions.py 2009-06-23 10:16:23 UTC (rev 4864)
@@ -530,7 +530,7 @@
self.getForegroundPguContext().startExecution()
if self.getBackgroundPguContext() != None:
# Unpause background context
- if not self.backgroundPguContextIsExclusive():
+ if self.getBackgroundPguContext() != None:
try:
self.getBackgroundPguContext().unpauseExecution()
except:
|