# HG changeset patch # User Mads Kiilerich # Date 1562149555 -7200 # Node ID d89217cca11a24a8d752349deeca74eea6c4989f # Parent 3929ff3f21c6ab30f248770afd94762c8b10da68 cli: introduce -h alias for --help Very convenient for muscle memory ... diff -r 3929ff3f21c6 -r d89217cca11a kallithea/bin/kallithea_cli_base.py --- a/kallithea/bin/kallithea_cli_base.py Tue Jun 11 20:53:33 2019 +0200 +++ b/kallithea/bin/kallithea_cli_base.py Wed Jul 03 12:25:55 2019 +0200 @@ -22,7 +22,7 @@ # This placeholder is the main entry point for the kallithea-cli command -@click.group() +@click.group(context_settings=dict(help_option_names=['-h', '--help'])) def cli(): """Various commands to manage a Kallithea instance."""