aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/refcat/tasks.py2
1 files changed, 1 insertions, 1 deletions
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):