diff options
author | Maxim Devaev <[email protected]> | 2023-01-23 18:52:13 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2023-01-23 18:52:13 +0200 |
commit | cd4d48c44a9c309f93a923a52f218b15deef8ba0 (patch) | |
tree | 971d1219734714efc55023c0ac8ee046fb0c066d | |
parent | b2169a655ab1fb699987093e6f97c15bdf2bde1e (diff) |
fixed missing help
-rw-r--r-- | kvmd/apps/totp/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kvmd/apps/totp/__init__.py b/kvmd/apps/totp/__init__.py index af5540c8..7f5d1c17 100644 --- a/kvmd/apps/totp/__init__.py +++ b/kvmd/apps/totp/__init__.py @@ -93,10 +93,11 @@ def main(argv: (list[str] | None)=None) -> None: cmd_setup_parser = subparsers.add_parser("init", help="Generate and show TOTP secret with QR code") cmd_setup_parser.add_argument("-f", "--force", action="store_true", help="Overwrite an existing secret") - cmd_setup_parser.add_argument("-n", "--name", default="", help="PiKVM instance name, FQDN by default") + cmd_setup_parser.add_argument("-n", "--name", default="", help="The PiKVM instance name, FQDN by default") cmd_setup_parser.set_defaults(cmd=_cmd_init) cmd_show_parser = subparsers.add_parser("show", help="Show the current TOTP secret with QR code") + cmd_show_parser.add_argument("-n", "--name", default="", help="The PiKVM instance name, FQDN by default") cmd_show_parser.set_defaults(cmd=_cmd_show) cmd_delete_parser = subparsers.add_parser("del", help="Remove TOTP secret and disable 2FA auth") |