diff options
author | Jose M. Guisado <jguisado@soleta.eu> | 2023-10-05 11:21:19 +0200 |
---|---|---|
committer | Jose M. Guisado <jguisado@soleta.eu> | 2023-10-05 11:21:19 +0200 |
commit | b1fc9cabb46719f2b9319ead63cafea7a745f710 (patch) | |
tree | b6fe4c07ad777f6ab738ced721c51ba37e6b27e9 /cli/objects/wol.py | |
parent | a721957cc46983f3026a30ea2dc814f5eafed1c2 (diff) |
objects: add missing prog parameter in subcommands
The specific subcommand name is missing in some of the subcommands help
message. For example:
$ ogcli list hardware
usage: ogcli [-h] --client-ip CLIENT_IP
ogcli: error: the following arguments are required: --client-ip
Fix this by adding the missing prog= parameter so argparse use this
instead of argv[0]. If no prog parameter is specified then argv[0] is
printed (i.e: "ogcli").
Diffstat (limited to 'cli/objects/wol.py')
-rw-r--r-- | cli/objects/wol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/objects/wol.py b/cli/objects/wol.py index e788ce1..5097bd7 100644 --- a/cli/objects/wol.py +++ b/cli/objects/wol.py @@ -26,7 +26,7 @@ class OgWol(): return lookup return None - parser = argparse.ArgumentParser() + parser = argparse.ArgumentParser(prog='ogcli send wol') parser.add_argument('--type', nargs='?', choices=['broadcast', 'unicast'], |