Skip to content

Commit

Permalink
safety fix for delete_downstream
Browse files Browse the repository at this point in the history
  • Loading branch information
joezuntz committed Aug 6, 2021
1 parent 9ad0ca5 commit 0d902e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/delete_downstream.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# loop through nstage times (the maximum it could be)
for i in range(len(stage_names)):
# take all tags we currently know we have to delete
for tag in tags_to_delete:
for tag in tags_to_delete[:]:
# find out which stages to clear because they need
# this tag which we are deleting
deps = set(dependencies[tag])
Expand Down

0 comments on commit 0d902e6

Please sign in to comment.