aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-06-08 23:29:14 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-06-08 23:29:14 +0200
commit9ba285f265eee1140b55588f15e6f5ef1daf3f74 (patch)
treec3d007252227f0a4a4e5933712e3d3781bf28c96 /python
parent2f506d727516401d59ef7a0f8126bf0e779d47af (diff)
downloadrefcat-9ba285f265eee1140b55588f15e6f5ef1daf3f74.tar.gz
refcat-9ba285f265eee1140b55588f15e6f5ef1daf3f74.zip
tasks: fix attribute
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 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):