Skip to content

download_job_artifacts: fix temp file creation

Tim Jaacks requested to merge fix-tempfile-creation into master

mkstemp() returns a tuple containing an OS-level handle to an open file (as would be returned by os.open()) and the absolute pathname of that file, in that order.

Use higher-level function NamedTemporaryFile() instead.

Merge request reports