From 82977e9ef2670cb53a4d6440601c22c6ce1d44c8 Mon Sep 17 00:00:00 2001 From: GUVWAF Date: Mon, 5 Dec 2022 20:02:53 +0100 Subject: [PATCH] Fix --ch-set help message --- meshtastic/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index e31aa53..a5fd3a8 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -889,7 +889,7 @@ def initParser(): "--ch-set", help=("Set a channel parameter. To see channel settings available:'--ch-set all all --ch-index 0'. " "Can set the 'psk' using this command. To disable encryption on primary channel:'--ch-set psk none --ch-index 0'. " "To set encryption with a new random key on second channel:'--ch-set psk random --ch-index 1'. " - "To set encryption back to the default:'--ch-set default --ch-index 0'. To set encryption with your " + "To set encryption back to the default:'--ch-set psk default --ch-index 0'. To set encryption with your " "own key: '--ch-set psk 0x1a1a1a1a2b2b2b2b1a1a1a1a2b2b2b2b1a1a1a1a2b2b2b2b1a1a1a1a2b2b2b2b --ch-index 0'."), nargs=2, action='append')