From 335b2e65c11d4d5bdcff060558fb22e1a6bbbd2b Mon Sep 17 00:00:00 2001 From: raywang Date: Thu, 21 Sep 2017 11:33:27 -0400 Subject: [PATCH] Removed default help text --- voltron/plugins/view/memory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voltron/plugins/view/memory.py b/voltron/plugins/view/memory.py index d3fd961..baaf270 100644 --- a/voltron/plugins/view/memory.py +++ b/voltron/plugins/view/memory.py @@ -26,7 +26,7 @@ class MemoryView(TerminalView): help='display the data in a column one CPU word wide and dereference any valid pointers', default=False) group.add_argument('--bytes', '-b', action='store', type=int, help='bytes per line (default 16)', default=16) - group.add_argument('--words', '-w', action='store', type=int, help='display data as machine words (default 1 word per line)', default=0) + group.add_argument('--words', '-w', action='store', type=int, help='machine words per line', default=0) sp.add_argument('--reverse', '-v', action='store_true', help='reverse the output', default=False) sp.add_argument('--track', '-t', action='store_true', help='track and highlight changes', default=True) sp.add_argument('--no-track', '-T', action='store_false', help='don\'t track and highlight changes')