Skip to content

Commit c844e4e

Browse files
committed
help details for new prefix values
1 parent 060df86 commit c844e4e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

meshtastic/__main__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ def addSelectionArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentParser
13421342

13431343
group.add_argument(
13441344
"--dest",
1345-
help="The destination node id for any sent commands, if not set '^all' or '^local' is assumed as appropriate",
1345+
help="The destination node id for any sent commands. Use prefix of ! or 0x. If not set '^all' or '^local' is assumed as appropriate.",
13461346
default=None,
13471347
metavar="!xxxxxxxx",
13481348
)
@@ -1646,7 +1646,7 @@ def addRemoteActionArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentPar
16461646
"--traceroute",
16471647
help="Traceroute from connected node to a destination. "
16481648
"You need pass the destination ID as argument, like "
1649-
"this: '--traceroute !ba4bf9d0' "
1649+
"this: '--traceroute !ba4bf9d0' | '--traceroute 0xba4bf9d0'"
16501650
"Only nodes with a shared channel can be traced.",
16511651
metavar="!xxxxxxxx",
16521652
)
@@ -1732,22 +1732,22 @@ def addRemoteAdminArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentPars
17321732
)
17331733
group.add_argument(
17341734
"--set-favorite-node",
1735-
help="Tell the destination node to set the specified node to be favorited on the NodeDB on the devicein its DB, by number or ID",
1735+
help="Tell the destination node to set the specified node to be favorited on the NodeDB on the devicein its DB, by number or ID using '!' or '0x' prefix.",
17361736
metavar="!xxxxxxxx"
17371737
)
17381738
group.add_argument(
17391739
"--remove-favorite-node",
1740-
help="Tell the destination node to set the specified node to be un-favorited on the NodeDB on the device, by number or ID",
1740+
help="Tell the destination node to set the specified node to be un-favorited on the NodeDB on the device, by number or ID using '!' or '0x' prefix.",
17411741
metavar="!xxxxxxxx"
17421742
)
17431743
group.add_argument(
17441744
"--set-ignored-node",
1745-
help="Tell the destination node to set the specified node to be ignored on the NodeDB on the devicein its DB, by number or ID",
1745+
help="Tell the destination node to set the specified node to be ignored on the NodeDB on the devicein its DB, by number or ID using '!' or '0x' prefix.",
17461746
metavar="!xxxxxxxx"
17471747
)
17481748
group.add_argument(
17491749
"--remove-ignored-node",
1750-
help="Tell the destination node to set the specified node to be un-ignored on the NodeDB on the device, by number or ID",
1750+
help="Tell the destination node to set the specified node to be un-ignored on the NodeDB on the device, by number or ID using '!' or '0x' prefix.",
17511751
metavar="!xxxxxxxx"
17521752
)
17531753
group.add_argument(

0 commit comments

Comments
 (0)