Fix cwl tests refs #15241
[arvados.git] / doc / _includes / _0_filter_py.liquid
index ef89e13a106c418de9adea184efa4eaddefdc88c..ff055dbb59c08e2c67ce7098adcdbac52a7182ac 100644 (file)
@@ -1,4 +1,9 @@
 #!/usr/bin/env python
+{% comment %}
+Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: CC-BY-SA-3.0
+{% endcomment %}
 
 # Import the Arvados sdk module
 import arvados
@@ -21,10 +26,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!