diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-05-29 13:20:19 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-05-29 13:20:19 +0200 |
commit | ef5e9e8b6787fdfd6af1226b48a4f6aeaf4cab54 (patch) | |
tree | 543de33a2353518a17fa5c57d72225b2d2c43fd0 /python | |
parent | 708517a64242538756821762a21083cd7cab39d1 (diff) | |
download | refcat-ef5e9e8b6787fdfd6af1226b48a4f6aeaf4cab54.tar.gz refcat-ef5e9e8b6787fdfd6af1226b48a4f6aeaf4cab54.zip |
tasks: fix UnmatchedOpenLibraryMatchTable
Diffstat (limited to 'python')
-rw-r--r-- | python/refcat/tasks.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 0656f3c..93e4928 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -883,6 +883,7 @@ class UnmatchedOpenLibraryMatchTable(Refcat): """, ol=self.input().get("ol").path, unmatched=self.input().get("unmatched").path) + luigi.LocalTarget(output).move(self.output().path) def output(self): return luigi.LocalTarget(path=self.path(ext="tsv.zst"), format=Zstd) |