Removed default help text

This commit is contained in:
raywang 2017-09-21 11:33:27 -04:00
parent 82bf16bcf8
commit 335b2e65c1
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class MemoryView(TerminalView):
help='display the data in a column one CPU word wide and dereference any valid pointers', help='display the data in a column one CPU word wide and dereference any valid pointers',
default=False) default=False)
group.add_argument('--bytes', '-b', action='store', type=int, help='bytes per line (default 16)', default=16) 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('--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('--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') sp.add_argument('--no-track', '-T', action='store_false', help='don\'t track and highlight changes')