Skip to content
Snippets Groups Projects
Commit 50364499 authored by David Huss's avatar David Huss :speech_balloon:
Browse files

Fix broken Help for main

parent e2325fc7
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,7 @@ FRIENDLY_KEYNAMES = {
}
EXAMPLE_CONFIG = """
[myservername]
EXAMPLE_CONFIG = """[myservername]
securitySalt=YOURSUPERSECRETSECRET
bigbluebutton.web.serverURL=https://bbb.example.com/
......@@ -311,8 +310,16 @@ def new_config(user_config_path: str):
@click.group()
@click.group(context_settings=CONTEXT_SETTINGS)
def main():
"""BBBMON is a small CLI utility to monitor bbb usage
\b
Examples: bbbmon config --edit
bbbmon meetings --watch 20 --endpoint bbb
Internally bbbmon relies on the offical bbb-API, which means you need to have the server's secret in order to create a valid request.
"""
pass
@main.command(context_settings=CONTEXT_SETTINGS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment