summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Bonnard <frediz@debian.org>2022-08-05 16:13:06 +0200
committerFrédéric Bonnard <frediz@debian.org>2022-08-08 14:18:36 +0200
commitb4d7a70a40a012ca6f3666da477a6f34f426e387 (patch)
tree9a2d5b924f04867a8c339faa0dba52777ed00750
parent6943d5c4cfc105a9c59ef08caec13f3bad299f02 (diff)
Remove hidden option which breaks man page generation
click-man 0.4.1-2 has at the moment no such support
-rw-r--r--organize/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/organize/cli.py b/organize/cli.py
index f5918da..321e283 100644
--- a/organize/cli.py
+++ b/organize/cli.py
@@ -83,7 +83,7 @@ CLI_WORKING_DIR_OPTION = click.option(
CLI_CONFIG_FILE_OPTION = click.option(
"--config-file",
default=None,
- hidden=True,
+ help="For CLI backwards compatibility with organize v1.x",
type=click.Path(exists=True, dir_okay=False, path_type=Path),
)
CLI_TAGS = click.option("--tags", type=TagType(), default="")