Skip to content

Commit

Permalink
Update datacube_alchemist/worker.py
Browse files Browse the repository at this point in the history
Co-authored-by: Damien Ayers <[email protected]>
  • Loading branch information
alexgleith and omad committed Dec 8, 2020
1 parent 8721d32 commit 3dc1342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datacube_alchemist/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def find_fill_missing(self, queue, dryrun):
"""

# Most of this guff is just to get a destination product name...
input_products = ", ".join(f"'{p.name}'" for p in self.input_products)
input_products = [p.name for p in self.input_products]
output_product = ""

dataset = self.dc.find_datasets(product=self.input_products[0].name, limit=1)
Expand Down

0 comments on commit 3dc1342

Please sign in to comment.