Skip to content

Commit

Permalink
removed double brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
esseivaju committed May 31, 2022
1 parent 6a59e85 commit f0e9e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raythena/drivers/esdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit f0e9e87

Please sign in to comment.