Merge pull request #94 from jdstroy/fix-help-text

Fix the text for --subnet in the help text
This commit is contained in:
Kevin Hester
2021-05-26 10:39:23 +08:00
committed by GitHub

View File

@@ -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)