From 13a84500c655933c6ac8258001c0ed61edc4975d Mon Sep 17 00:00:00 2001 From: jdstroy Date: Tue, 25 May 2021 08:05:37 +0000 Subject: [PATCH] Fix the text for --subnet in the help text --- meshtastic/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index 4d36f90..b779a8d 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -647,7 +647,7 @@ def initParser(): parser.add_argument('--tunnel', action='store_true', help="Create a TUN tunnel device for forwarding IP packets over the mesh") parser.add_argument( - "--subnet", dest='tunnel_net', help="Read from a GPIO mask", default=None) + "--subnet", dest='tunnel_net', help="Sets the local-end subnet address for the TUN IP bridge", default=None) parser.set_defaults(deprecated=None)