@@ -226,7 +226,7 @@ def setPref(config, comp_name, raw_val) -> bool:
226
226
logging .debug (f"valStr:{ raw_val } val:{ val } " )
227
227
228
228
if snake_name == "wifi_psk" and len (str (raw_val )) < 8 :
229
- print (f "Warning: network.wifi_psk must be 8 or more characters." )
229
+ print ("Warning: network.wifi_psk must be 8 or more characters." )
230
230
return False
231
231
232
232
enumType = pref .enum_type
@@ -1365,7 +1365,8 @@ def addSelectionArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentParser
1365
1365
1366
1366
group .add_argument (
1367
1367
"--dest" ,
1368
- help = "The destination node id for any sent commands, if not set '^all' or '^local' is assumed as appropriate" ,
1368
+ help = "The destination node id for any sent commands. If not set '^all' or '^local' is assumed."
1369
+ "Use the node ID with a '!' or '0x' prefix or the node number." ,
1369
1370
default = None ,
1370
1371
metavar = "!xxxxxxxx" ,
1371
1372
)
@@ -1676,7 +1677,7 @@ def addRemoteActionArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentPar
1676
1677
"--traceroute" ,
1677
1678
help = "Traceroute from connected node to a destination. "
1678
1679
"You need pass the destination ID as argument, like "
1679
- "this: '--traceroute !ba4bf9d0' "
1680
+ "this: '--traceroute !ba4bf9d0' | '--traceroute 0xba4bf9d0' "
1680
1681
"Only nodes with a shared channel can be traced." ,
1681
1682
metavar = "!xxxxxxxx" ,
1682
1683
)
@@ -1757,27 +1758,32 @@ def addRemoteAdminArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentPars
1757
1758
1758
1759
group .add_argument (
1759
1760
"--remove-node" ,
1760
- help = "Tell the destination node to remove a specific node from its DB, by node number or ID" ,
1761
+ help = "Tell the destination node to remove a specific node from its NodeDB. "
1762
+ "Use the node ID with a '!' or '0x' prefix or the node number." ,
1761
1763
metavar = "!xxxxxxxx"
1762
1764
)
1763
1765
group .add_argument (
1764
1766
"--set-favorite-node" ,
1765
- 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" ,
1767
+ help = "Tell the destination node to set the specified node to be favorited on the NodeDB. "
1768
+ "Use the node ID with a '!' or '0x' prefix or the node number." ,
1766
1769
metavar = "!xxxxxxxx"
1767
1770
)
1768
1771
group .add_argument (
1769
1772
"--remove-favorite-node" ,
1770
- help = "Tell the destination node to set the specified node to be un-favorited on the NodeDB on the device, by number or ID" ,
1773
+ help = "Tell the destination node to set the specified node to be un-favorited on the NodeDB. "
1774
+ "Use the node ID with a '!' or '0x' prefix or the node number." ,
1771
1775
metavar = "!xxxxxxxx"
1772
1776
)
1773
1777
group .add_argument (
1774
1778
"--set-ignored-node" ,
1775
- 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" ,
1779
+ help = "Tell the destination node to set the specified node to be ignored on the NodeDB. "
1780
+ "Use the node ID with a '!' or '0x' prefix or the node number." ,
1776
1781
metavar = "!xxxxxxxx"
1777
1782
)
1778
1783
group .add_argument (
1779
1784
"--remove-ignored-node" ,
1780
- help = "Tell the destination node to set the specified node to be un-ignored on the NodeDB on the device, by number or ID" ,
1785
+ help = "Tell the destination node to set the specified node to be un-ignored on the NodeDB. "
1786
+ "Use the node ID with a '!' or '0x' prefix or the node number." ,
1781
1787
metavar = "!xxxxxxxx"
1782
1788
)
1783
1789
group .add_argument (
0 commit comments