aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-08-04 03:08:28 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-08-04 03:08:28 +0200
commit922ff2fce2e7bfe0a114e69021afa94eae71a858 (patch)
tree5a9720f6ee99ac76d9b55c3cdb6b41bd4630019b
parent902cac30f940fe5ea909d7fea5713d08d307d35c (diff)
downloadrefcat-922ff2fce2e7bfe0a114e69021afa94eae71a858.tar.gz
refcat-922ff2fce2e7bfe0a114e69021afa94eae71a858.zip
tasks: fix target placeholders
-rw-r--r--python/refcat/tasks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py
index 8dcc676..43eb4b2 100644
--- a/python/refcat/tasks.py
+++ b/python/refcat/tasks.py
@@ -429,8 +429,8 @@ class BrefWithDOI(Refcat):
-m target_release_ident:target_doi
| zstd -c -T0 > {output}
""",
- bref=self.input().get("bref"),
- mapping=self.input().get("mapping"))
+ bref=self.input().get("bref").path,
+ mapping=self.input().get("mapping").path)
luigi.LocalTarget(output).move(self.output().path)
def output(self):