Merge branch '10700-dispatch'
[arvados.git] / doc / _includes / _0_filter_py.liquid
index ef89e13a106c418de9adea184efa4eaddefdc88c..831e1b8fddf66783bb43ccf38eb764b26df432c6 100644 (file)
@@ -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!