Correct envvar in help text
This commit is contained in:
parent
9d664a9ff1
commit
d8f1538d68
1 changed files with 1 additions and 1 deletions
2
mmcli.py
2
mmcli.py
|
@ -322,7 +322,7 @@ Hint: JSON output can be filtered on the command line with jq(1).
|
||||||
|
|
||||||
argparser.add_argument(
|
argparser.add_argument(
|
||||||
"--server",
|
"--server",
|
||||||
help="e.g.: mattermost.example.org; example.org/mattermost; envvar: {ENVVAR_SERVER}",
|
help=f"e.g.: mattermost.example.org; example.org/mattermost; envvar: {ENVVAR_SERVER}",
|
||||||
default=os.getenv(ENVVAR_SERVER))
|
default=os.getenv(ENVVAR_SERVER))
|
||||||
|
|
||||||
subparsers = argparser.add_subparsers(title="actions", dest="action", required=True)
|
subparsers = argparser.add_subparsers(title="actions", dest="action", required=True)
|
||||||
|
|
Loading…
Reference in a new issue