From ab523df46515a9099b6c7e003b471f2edb26f296 Mon Sep 17 00:00:00 2001 From: canardleteer Date: Fri, 12 Mar 2021 08:10:11 -0800 Subject: [PATCH] Fix a small typo in the CLI help --- meshtastic/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index 6312f77..89b412e 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -558,9 +558,9 @@ def initParser(): action="store_true") parser.add_argument('--set-router', dest='router', - action='store_true', help="Deprecated, use --set router true instead") + action='store_true', help="Deprecated, use --set is_router true instead") parser.add_argument('--unset-router', dest='router', - action='store_false', help="Deprecated, use --set router false instead") + action='store_false', help="Deprecated, use --set is_router false instead") if have_tunnel: parser.add_argument('--tunnel',