From 922ff2fce2e7bfe0a114e69021afa94eae71a858 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Wed, 4 Aug 2021 03:08:28 +0200 Subject: tasks: fix target placeholders --- python/refcat/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 8dcc676..43eb4b2 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -429,8 +429,8 @@ class BrefWithDOI(Refcat): -m target_release_ident:target_doi | zstd -c -T0 > {output} """, - bref=self.input().get("bref"), - mapping=self.input().get("mapping")) + bref=self.input().get("bref").path, + mapping=self.input().get("mapping").path) luigi.LocalTarget(output).move(self.output().path) def output(self): -- cgit v1.2.3