Fix --socks option deprecated info in command line args check.

This commit is contained in:
Deepesh Pathak 2018-02-25 19:51:18 +05:30
parent 6b5b71aefa
commit 13a47c66bf
No known key found for this signature in database
GPG Key ID: D9AA53BEC9C33F71

View File

@ -11,7 +11,6 @@ DEPRECATED = """
--order --order
--no-mouse --no-mouse
--reverse --reverse
--socks
--http2-priority --http2-priority
--no-http2-priority --no-http2-priority
--no-websocket --no-websocket
@ -59,6 +58,7 @@ REPLACED = """
-i -i
-f -f
--filter --filter
--socks
""" """
REPLACEMENTS = { REPLACEMENTS = {
@ -99,7 +99,8 @@ REPLACEMENTS = {
"--replace": "--replacements", "--replace": "--replacements",
"-i": "--intercept", "-i": "--intercept",
"-f": "--view-filter", "-f": "--view-filter",
"--filter": "--view-filter" "--filter": "--view-filter",
"--socks": "--mode socks5"
} }