From c7567002004fd3c94ae490a8ab79c7d19482468d Mon Sep 17 00:00:00 2001 From: Yannick Crutzen <yannick.crutzen@gdtech.eu> Date: Sun, 20 Sep 2020 21:33:22 +0200 Subject: [PATCH] correct comments --- postProLoop.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postProLoop.py b/postProLoop.py index b29d806..ac7ec14 100755 --- a/postProLoop.py +++ b/postProLoop.py @@ -294,7 +294,7 @@ def execScilabScript(scilabExe, scilabCmd, sciFilePath=None, verb=True): cmd = '"%s" -nw -e "%s" > "%s" 2>&1' % (scilabExe, sciCmd, logFile) if verb : print ('subprocess command : ', cmd) - # acquire matlock + # acquire sciLock tim0 = time.time() sciLock.acquire() try : @@ -307,7 +307,7 @@ def execScilabScript(scilabExe, scilabCmd, sciFilePath=None, verb=True): # fonction objectif doit retourner un double print ("problem during Scilab run") a = 0.0 - # release matlock + # release sciLock sciLock.release() print (" Scilab exec time = %d sec" %(time.time()-tim0)) return a -- GitLab