mirror of https://github.com/snare/voltron.git
Removed default help text
This commit is contained in:
parent
82bf16bcf8
commit
335b2e65c1
|
@ -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')
|
||||||
|
|
Loading…
Reference in New Issue