forked from M-Labs/artiq
coremgmt frontend: fix arg name
This commit is contained in:
parent
21944ff865
commit
e8bd99048e
@ -25,9 +25,9 @@ def get_argparser():
|
||||
help="Simulation - does not connect to device")
|
||||
parser.add_argument("core_addr", metavar="CORE_ADDR",
|
||||
help="hostname or IP address of the core device")
|
||||
parser.add_argument("-s", "--satellite", default=0,
|
||||
metavar="DRTIO_ID", type=int,
|
||||
help="the logged DRTIO destination")
|
||||
parser.add_argument("-s", "--drtio-dest", default=0,
|
||||
metavar="DRTIO_DEST", type=int,
|
||||
help="specifies the DRTIO destination")
|
||||
return parser
|
||||
|
||||
|
||||
|
@ -118,8 +118,8 @@ def get_argparser():
|
||||
help="show heap layout")
|
||||
|
||||
# manage target
|
||||
p_drtio_dest = parser.add_argument("-s", "--satellite", default=0,
|
||||
metavar="DRTIO ID", type=int,
|
||||
p_drtio_dest = parser.add_argument("-s", "--drtio-dest", default=0,
|
||||
metavar="DRTIO_DEST", type=int,
|
||||
help="specify DRTIO destination that "
|
||||
"receives this command")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user