From f0e9e870ff356b5d73cea29e28996b745b2e7f95 Mon Sep 17 00:00:00 2001 From: Julien Esseiva Date: Mon, 30 May 2022 19:37:06 -0700 Subject: [PATCH] removed double brackets --- src/raythena/drivers/esdriver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raythena/drivers/esdriver.py b/src/raythena/drivers/esdriver.py index 46abf1d..794be95 100644 --- a/src/raythena/drivers/esdriver.py +++ b/src/raythena/drivers/esdriver.py @@ -939,7 +939,7 @@ def hits_merge_transform(self, input_files: Iterable[str], output_file: str) -> cmd = str() cmd += "export ATLAS_LOCAL_ROOT_BASE=/cvmfs/atlas.cern.ch/repo/ATLASLocalRootBase;" cmd += "export thePlatform=\"${SLURM_SPANK_SHIFTER_IMAGEREQUEST}\";" - cmd += "source ${{ATLAS_LOCAL_ROOT_BASE}}/user/atlasLocalSetup.sh --swtype shifter -c $thePlatform -d -s none" + cmd += "source ${ATLAS_LOCAL_ROOT_BASE}/user/atlasLocalSetup.sh --swtype shifter -c $thePlatform -d -s none" cmd += f" -r \"{container_script}\" -e \"--clearenv\";RETURN_VAL=$?; rm -r {tmp_dir};exit $RETURN_VAL;" sub_process = Popen(cmd, stdin=DEVNULL,