Skip to content

Commit d5d55b9

Browse files
committed
Update --args help text
1 parent caa69a4 commit d5d55b9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

gdbgui/backend.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -866,9 +866,10 @@ def main():
866866
args_group.add_argument(
867867
"--args",
868868
nargs=argparse.REMAINDER,
869-
help='All remaining args are taken as the binary and arguments to run'
870-
' in gdb (as with gdb --args).'
871-
' Example: gdbgui [...] --args ./mybinary myarg -flag1 -flag2',
869+
help='Specify the executable file and any arguments. All arguments are'
870+
' taken literally, so if used, this must be the last argument'
871+
' passed to gdbgui.'
872+
' Example: gdbgui [...] --args ./mybinary myarg -flag1 -flag2',
872873
default=[],
873874
)
874875

0 commit comments

Comments
 (0)