We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccc050e commit d82c8f2Copy full SHA for d82c8f2
src/DIRAC/Resources/Computing/BatchSystems/Condor.py
@@ -176,7 +176,7 @@ def submitJob(self, **kwargs):
176
] = "The WholeNode option is deprecated and not applied anymore, please remove it from the CS to continue"
177
return resultDict
178
179
- jdlFile = tempfile.NamedTemporaryFile(dir=outputDir, suffix=".jdl")
+ jdlFile = tempfile.NamedTemporaryFile(dir=outputDir, suffix=".jdl", mode="wt")
180
scheddOptions = 'requirements = OpSys == "LINUX"\n'
181
scheddOptions += "gentenv = False"
182
jdlFile.write(
0 commit comments