From 7eb4ad486c90073289daf24165e3eea3ae98fb09 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 5 Jun 2023 23:22:29 +0200 Subject: [PATCH] Continued: - prog is the script's name by default which is okay - added epilog --- fba/boot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fba/boot.py b/fba/boot.py index d400490..db3bb11 100644 --- a/fba/boot.py +++ b/fba/boot.py @@ -44,8 +44,8 @@ def init_parser(): print("DEBUG: Initializing parser ...") _PARSER = argparse.ArgumentParser( - prog="Fedi API Block", - description="Fetches block reasons from the fediverse" + description="Fetches block reasons from the fediverse", + epilog="Please note that some commands have optional arguments, you may want to try fba.py --help to find them out.", ) subparser_command = _PARSER.add_subparsers( dest="command", -- 2.39.5