From 3dc1342ce4e7cfb7902d7eabe21f7598218f8cd4 Mon Sep 17 00:00:00 2001 From: Alex Leith Date: Mon, 7 Dec 2020 14:11:13 +1100 Subject: [PATCH] Update datacube_alchemist/worker.py Co-authored-by: Damien Ayers --- datacube_alchemist/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datacube_alchemist/worker.py b/datacube_alchemist/worker.py index 53904fb9..08f0a04e 100644 --- a/datacube_alchemist/worker.py +++ b/datacube_alchemist/worker.py @@ -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)