diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-05-19 18:26:53 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-05-19 18:26:53 +0200 |
commit | f02e796581e7d33527fb15a3a364e762f147171f (patch) | |
tree | 765f5ceb753d59ecdc0a75960a9c02fe7e3175a2 /python | |
parent | 70b6889a8814c2f095168b60911f3099779b9d2c (diff) | |
download | refcat-f02e796581e7d33527fb15a3a364e762f147171f.tar.gz refcat-f02e796581e7d33527fb15a3a364e762f147171f.zip |
task: move result into place
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 a5e5c72..d3c658d 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -575,6 +575,7 @@ class BrefZipDOI(Refcat): """, refs=self.input().get("refs").path, fatcat=self.input().get("fatcat").path) + luigi.LocalTarget(output).move(self.output().path) def output(self): return luigi.LocalTarget(path=self.path(ext="json.zst"), format=Zstd) |