Skip to content

Commit

Permalink
Fix subcommand docstrings in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
dmuhs committed Nov 29, 2019
1 parent 36f98e5 commit 8615ab1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythx_cli/cli.py
Expand Up @@ -326,7 +326,7 @@ def group_list(ctx, number):
"This functionality is only available to registered users. "
"Head over to https://mythx.io/ and register a free account to "
"list your past analyses. Alternatively, you can look up the "
"status of a specific job by calling 'mythx status <uuid>'."
"status of a specific job by calling 'mythx analysis status <uuid>'."
)
)
click.echo(FORMAT_RESOLVER[ctx["fmt"]].format_group_list(result))
Expand Down Expand Up @@ -426,7 +426,7 @@ def analysis_list(ctx, number):
"This functionality is only available to registered users. "
"Head over to https://mythx.io/ and register a free account to "
"list your past analyses. Alternatively, you can look up the "
"status of a specific job by calling 'mythx status <uuid>'."
"status of a specific job by calling 'mythx analysis status <uuid>'."
)
)
click.echo(FORMAT_RESOLVER[ctx["fmt"]].format_analysis_list(result))
Expand Down

0 comments on commit 8615ab1

Please sign in to comment.