diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-08 23:27:28 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-08 23:27:28 +0200 |
commit | 2f506d727516401d59ef7a0f8126bf0e779d47af (patch) | |
tree | 554d28ca2dcdc80df7b77d926d5b4c74bc68ac68 /python | |
parent | b5ede61d163dc55408919c092f9ed5f3d38f79f1 (diff) | |
download | refcat-2f506d727516401d59ef7a0f8126bf0e779d47af.tar.gz refcat-2f506d727516401d59ef7a0f8126bf0e779d47af.zip |
tasks: fix path
Diffstat (limited to 'python')
-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 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): |