From 9ba285f265eee1140b55588f15e6f5ef1daf3f74 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Tue, 8 Jun 2021 23:29:14 +0200 Subject: tasks: fix attribute --- python/refcat/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index a0cea56..63b12f4 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.output().path, tmpf)) + shellout("""cat "{}" >> {}""".format(v.path, tmpf)) luigi.LocalTarget(tmpf).move(self.output().path) def output(self): -- cgit v1.2.3