diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-08 23:29:14 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-08 23:29:14 +0200 |
commit | 9ba285f265eee1140b55588f15e6f5ef1daf3f74 (patch) | |
tree | c3d007252227f0a4a4e5933712e3d3781bf28c96 | |
parent | 2f506d727516401d59ef7a0f8126bf0e779d47af (diff) | |
download | refcat-9ba285f265eee1140b55588f15e6f5ef1daf3f74.tar.gz refcat-9ba285f265eee1140b55588f15e6f5ef1daf3f74.zip |
tasks: fix attribute
-rw-r--r-- | python/refcat/tasks.py | 2 |
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): |