Skip to content

Commit

Permalink
Belated fix for DM-27397 in certify script.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Nov 4, 2020
1 parent 5e4dd80 commit f187bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/daf/butler/script/certifyCalibrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def certifyCalibrations(repo, input_collection, output_collection, dataset_type_
)
if not search_all_inputs:
try:
input_collection, _ = next(iter(registry.getCollectionChain(input_collection)))
input_collection = next(iter(registry.getCollectionChain(input_collection)))
except TypeError:
# Not a CHAINED collection; do nothing.
pass
Expand Down

0 comments on commit f187bc7

Please sign in to comment.