Fix typo on UnixCommandClass contrib. Resolves #2305

This commit is contained in:
Griatch 2021-01-18 22:13:00 +01:00
parent a99729684e
commit b633b48141
2 changed files with 3 additions and 1 deletions

View file

@ -123,7 +123,7 @@ class UnixCommandParser(argparse.ArgumentParser):
# Replace the -h/--help
self.add_argument(
"-h", "--hel", nargs=0, action=HelpAction, help="display the command help"
"-h", "--help", nargs=0, action=HelpAction, help="display the command help"
)
def format_usage(self):