diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-03-30 03:35:01 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-03-30 03:35:01 +0200 |
commit | ab1a133b2ad3fd2592953d4c775e7e055c58b586 (patch) | |
tree | d87cb72aa4504c2e63709a3ada1b3fbc81fe7ca3 | |
parent | b6003f250d76050b5f3d9e1ea48b45ab053f9086 (diff) | |
download | refcat-ab1a133b2ad3fd2592953d4c775e7e055c58b586.tar.gz refcat-ab1a133b2ad3fd2592953d4c775e7e055c58b586.zip |
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 04ea55d..3358f41 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1463,7 +1463,7 @@ class BiblioRefWiki(Refcat): zstd -c -T0 > {output} """, releases=self.input().get("releases").path, - refs=self.input().get("wiki").path) + wiki=self.input().get("wiki").path) luigi.LocalTarget(output).move(self.output().path) def output(self): |