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
--no-mouse
--reverse
--socks
--http2-priority
--no-http2-priority
--no-websocket
@ -59,6 +58,7 @@ REPLACED = """
-i
-f
--filter
--socks
"""
REPLACEMENTS = {
@ -99,7 +99,8 @@ REPLACEMENTS = {
"--replace": "--replacements",
"-i": "--intercept",
"-f": "--view-filter",
"--filter": "--view-filter"
"--filter": "--view-filter",
"--socks": "--mode socks5"
}