diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-05-14 01:50:58 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-05-14 01:50:58 +0200 |
commit | d60b6257288f5ff8221eebb70b7ca2a4626095e3 (patch) | |
tree | f8ff3a03e13dc3294faf222b7a119470a91aba3d /python | |
parent | bbf0f6b5959331b5eb6b9bca88ed7da10ceba499 (diff) | |
download | refcat-d60b6257288f5ff8221eebb70b7ca2a4626095e3.tar.gz refcat-d60b6257288f5ff8221eebb70b7ca2a4626095e3.zip |
tasks: fix keyword parameter name
Diffstat (limited to 'python')
-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 91e017b..6fefc6a 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -512,7 +512,7 @@ class FatcatMapped(Refcat): """ Fatcat mapped "tsand". """ - mapper = luigi.Parameter(default="ts", help="mapper short name") + mapper = luigi.Parameter(default="ts", description="mapper short name") def requires(self): return ReleaseExportReduced() |