Trivial update

This commit is contained in:
Miroslav Stampar
2020-11-24 14:07:30 +01:00
parent 6b7c3a2f81
commit 8dad7dd12d
2 changed files with 3 additions and 1 deletions

View File

@@ -963,6 +963,8 @@ def cmdLineParser(argv=None):
argv[i] = ""
elif argv[i].startswith("--data-raw"):
argv[i] = argv[i].replace("--data-raw", "--data", 1)
elif argv[i].startswith("--drop-cookie"):
argv[i] = argv[i].replace("--drop-cookie", "--drop-set-cookie", 1)
elif any(argv[i].startswith(_) for _ in ("--tamper", "--ignore-code", "--skip")):
key = re.search(r"\-?\-(\w+)\b", argv[i]).group(1)
index = auxIndexes.get(key, None)