Merge pull request #68 from canardleteer/cli_help_typo

Fix a small typo in the CLI help
This commit is contained in:
Kevin Hester
2021-03-13 11:12:02 +08:00
committed by GitHub

View File

@@ -574,9 +574,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',