Rename opposite to opposite_aliases

This commit is contained in:
Unrud 2021-11-10 22:16:30 +01:00
parent 7c9c873b13
commit dba6338968
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ def run() -> None:
del kwargs["type"]
kwargs["action"] = "store_const"
kwargs["const"] = "True"
opposite_args = list(kwargs.pop("opposite", ()))
opposite_args = list(kwargs.pop("opposite_aliases", ()))
opposite_args.append("--no%s" % long_name[1:])
group.add_argument(*args, **kwargs)

View File

@ -126,7 +126,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([
"value": "False",
"help": "use SSL connection",
"aliases": ("-s", "--ssl",),
"opposite": ("-S", "--no-ssl",),
"opposite_aliases": ("-S", "--no-ssl",),
"type": bool}),
("certificate", {
"value": "/etc/ssl/radicale.cert.pem",