X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/812993586e7dc31ead38075e07616b7ec47fd347..refs/heads/10036-canceled-container-state:/doc/_includes/_0_filter_py.liquid diff --git a/doc/_includes/_0_filter_py.liquid b/doc/_includes/_0_filter_py.liquid index ef89e13a10..831e1b8fdd 100644 --- a/doc/_includes/_0_filter_py.liquid +++ b/doc/_includes/_0_filter_py.liquid @@ -21,10 +21,10 @@ with out.open('0-filter.txt') as out_file: # Output every line in the file that starts with '0' out_file.writelines(line for line in input_file if line.startswith('0')) -# Commit the output to keep. This returns a Keep id. -output_id = out.finish() +# Commit the output to Keep. +output_locator = out.finish() -# Set the output for this task to the Keep id -this_task.set_output(output_id) +# Use the resulting locator as the output for this task. +this_task.set_output(output_locator) # Done!