diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-08-04 03:08:28 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-08-04 03:08:28 +0200 |
commit | 922ff2fce2e7bfe0a114e69021afa94eae71a858 (patch) | |
tree | 5a9720f6ee99ac76d9b55c3cdb6b41bd4630019b /python | |
parent | 902cac30f940fe5ea909d7fea5713d08d307d35c (diff) | |
download | refcat-922ff2fce2e7bfe0a114e69021afa94eae71a858.tar.gz refcat-922ff2fce2e7bfe0a114e69021afa94eae71a858.zip |
tasks: fix target placeholders
Diffstat (limited to 'python')
-rw-r--r-- | python/refcat/tasks.py | 4 |
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): |