drop commands list from cli help

This commit is contained in:
Alex Grintsvayg 2018-02-08 09:36:59 -05:00
parent 21e653367f
commit b3d3c1c93b

View file

@ -171,7 +171,6 @@ def print_error(message, suggest_help=True):
def print_help(): def print_help():
commands = Daemon.callable_methods.keys()
print "\n".join([ print "\n".join([
"NAME", "NAME",
" lbrynet-cli - LBRY command line client.", " lbrynet-cli - LBRY command line client.",
@ -184,9 +183,6 @@ def print_help():
" lbrynet-cli status # get daemon status", " lbrynet-cli status # get daemon status",
" lbrynet-cli resolve_name what # resolve a name", " lbrynet-cli resolve_name what # resolve a name",
" lbrynet-cli help resolve_name # get help for a command", " lbrynet-cli help resolve_name # get help for a command",
"",
"COMMANDS",
wrap_list_to_term_width(commands, prefix=' ')
]) ])