From 2f506d727516401d59ef7a0f8126bf0e779d47af Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Tue, 8 Jun 2021 23:27:28 +0200 Subject: tasks: fix path --- python/refcat/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 15a27d5..a0cea56 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1190,7 +1190,7 @@ class Bref(Refcat): _, tmpf = tempfile.mkstemp() for k, v in self.input().items(): self.logger.debug("adding {}".format(k)) - shellout("""cat "{}" >> {}""".format(v, tmpf)) + shellout("""cat "{}" >> {}""".format(v.output().path, tmpf)) luigi.LocalTarget(tmpf).move(self.output().path) def output(self): -- cgit v1.2.3