mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
parent
7b7107902b
commit
f2700874fd
1 changed files with 3 additions and 2 deletions
|
@ -290,7 +290,7 @@ argp.add_argument(
|
||||||
argp.add_argument(
|
argp.add_argument(
|
||||||
"-w",
|
"-w",
|
||||||
"--whitelist",
|
"--whitelist",
|
||||||
help="Deprecated. Please use -a or --allowlist",
|
help=argparse.SUPPRESS,
|
||||||
)
|
)
|
||||||
argp.add_argument(
|
argp.add_argument(
|
||||||
"-a",
|
"-a",
|
||||||
|
@ -322,7 +322,8 @@ args = argp.parse_args()
|
||||||
|
|
||||||
whitelist = args.whitelist
|
whitelist = args.whitelist
|
||||||
if whitelist:
|
if whitelist:
|
||||||
print("Use of -w WHITELIST has been removed. Please use -a ALLOWLIST instead.")
|
print("The option to provide a set of names to exclude from the blocklist has been changed from -w to -a\r\n")
|
||||||
|
argp.print_help()
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
conf = args.config
|
conf = args.config
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue