Fix for 226. Updated help text for --hide-info / -I

This commit is contained in:
pgrohe 2018-02-15 00:22:07 -05:00
parent a1e17d9f9a
commit 524634d1e3
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ class RegisterView (TerminalView):
sp.add_argument('--fpu', '-p', dest="sections", action='append_const', const="fpu", help='show fpu registers')
sp.add_argument('--no-fpu', '-P', dest="sections", action='append_const', const="no_fpu",
help='hide fpu registers')
sp.add_argument('--hide-info', '-I',dest="hide_info", action='store_true', help='show info (pointer derefs, ascii) for registers',
sp.add_argument('--hide-info', '-I',dest="hide_info", action='store_true', help='hide extra info (pointer derefs, ascii) for registers',
default=False)
def __init__(self, *args, **kwargs):