From 2ab427d4e6dc67785ad1071598acc3532e0b4ea7 Mon Sep 17 00:00:00 2001
From: Franck Dary <franck.dary@lis-lab.fr>
Date: Thu, 9 Apr 2020 15:41:16 +0200
Subject: [PATCH] corrected bug in launchBatches

---
 UD_any/launchBatches.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/UD_any/launchBatches.py b/UD_any/launchBatches.py
index 8af6e6a..8db6ab9 100755
--- a/UD_any/launchBatches.py
+++ b/UD_any/launchBatches.py
@@ -46,7 +46,7 @@ def launchTrainOar(mode, expName, arguments, nbHours, jobIndex) :
   command += " -O %s.stdout"%expName
   command += " -p \"gpu IS NOT NULL\""
   command += " -l walltime=%d:00:00"%nbHours
-  command += " \"" + "./train.sh %s bin/%s %s --silent %s"%(mode,expName,arguments,devScore) + "\""
+  command += " \'" + "./train.sh %s bin/%s %s --silent %s"%(mode,expName,arguments,devScore) + "\'"
 
   os.system(command)
 ###############################################################################
-- 
GitLab