From b3d3c1c93b23626a52420768416e14fac15aee02 Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Thu, 8 Feb 2018 09:36:59 -0500 Subject: [PATCH] drop commands list from cli help --- lbrynet/daemon/DaemonCLI.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lbrynet/daemon/DaemonCLI.py b/lbrynet/daemon/DaemonCLI.py index 820bc6ebc..fe16806fa 100644 --- a/lbrynet/daemon/DaemonCLI.py +++ b/lbrynet/daemon/DaemonCLI.py @@ -171,7 +171,6 @@ def print_error(message, suggest_help=True): def print_help(): - commands = Daemon.callable_methods.keys() print "\n".join([ "NAME", " lbrynet-cli - LBRY command line client.", @@ -184,9 +183,6 @@ def print_help(): " lbrynet-cli status # get daemon status", " lbrynet-cli resolve_name what # resolve a name", " lbrynet-cli help resolve_name # get help for a command", - "", - "COMMANDS", - wrap_list_to_term_width(commands, prefix=' ') ])