1
0
forked from M-Labs/artiq

coremgmt frontend: fix arg name

This commit is contained in:
occheung 2024-10-02 11:40:30 +08:00
parent 21944ff865
commit e8bd99048e
2 changed files with 5 additions and 5 deletions

View File

@ -25,9 +25,9 @@ def get_argparser():
help="Simulation - does not connect to device") help="Simulation - does not connect to device")
parser.add_argument("core_addr", metavar="CORE_ADDR", parser.add_argument("core_addr", metavar="CORE_ADDR",
help="hostname or IP address of the core device") help="hostname or IP address of the core device")
parser.add_argument("-s", "--satellite", default=0, parser.add_argument("-s", "--drtio-dest", default=0,
metavar="DRTIO_ID", type=int, metavar="DRTIO_DEST", type=int,
help="the logged DRTIO destination") help="specifies the DRTIO destination")
return parser return parser

View File

@ -118,8 +118,8 @@ def get_argparser():
help="show heap layout") help="show heap layout")
# manage target # manage target
p_drtio_dest = parser.add_argument("-s", "--satellite", default=0, p_drtio_dest = parser.add_argument("-s", "--drtio-dest", default=0,
metavar="DRTIO ID", type=int, metavar="DRTIO_DEST", type=int,
help="specify DRTIO destination that " help="specify DRTIO destination that "
"receives this command") "receives this command")