X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cf7e30873ef4b92cc8ec099b2bb344391a070e93..0035033f6bf6db955b116e2e0cc052bc5c79d80e:/doc/_includes/_run_md5sum_py.liquid diff --git a/doc/_includes/_run_md5sum_py.liquid b/doc/_includes/_run_md5sum_py.liquid index 16516a8852..46152f17db 100644 --- a/doc/_includes/_run_md5sum_py.liquid +++ b/doc/_includes/_run_md5sum_py.liquid @@ -3,7 +3,8 @@ import arvados # Automatically parallelize this job by running one task per file. -arvados.job_setup.one_task_per_input_file(if_sequence=0, and_end_task=True, input_as_path=True) +arvados.job_setup.one_task_per_input_file(if_sequence=0, and_end_task=True, + input_as_path=True) # Get the input file for the task input_file = arvados.get_task_param_mount('input') @@ -13,6 +14,6 @@ stdoutdata, stderrdata = arvados.util.run_command(['md5sum', input_file]) # Save the standard output (stdoutdata) to "md5sum.txt" in the output collection out = arvados.CollectionWriter() -out.set_current_file_name("md5sum.txt") -out.write(stdoutdata) +with out.open('md5sum.txt') as out_file: + out_file.write(stdoutdata) arvados.current_task().set_output(out.finish())