diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-08 00:47:04 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-08 00:47:04 +0200 |
commit | 040fbf0d2306e38dc1ec216064918c157a438de7 (patch) | |
tree | 04912f9027b99ddb02e936f1669794ea2d2cc932 | |
parent | 12cdc4dd15c2acf127f68f115500bf176c143265 (diff) | |
download | refcat-040fbf0d2306e38dc1ec216064918c157a438de7.tar.gz refcat-040fbf0d2306e38dc1ec216064918c157a438de7.zip |
tasks: fix key
-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 48920e3..ac870e0 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1045,7 +1045,7 @@ class BrefOpenLibraryZipISBN(Refcat): zstd -c -T0 > {output} """, refs=self.input().get("refs").path, - fatcat=self.input().get("ol").path) + ol=self.input().get("ol").path) luigi.LocalTarget(output).move(self.output().path) def output(self): |