Minor update

This commit is contained in:
Miroslav Stampar 2012-09-26 15:25:01 +02:00
parent 6eae7013b6
commit 19407b9aca
2 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ def cmdLineParser():
request.add_option("--skip-urlencode", dest="skipUrlEncode", request.add_option("--skip-urlencode", dest="skipUrlEncode",
action="store_true", action="store_true",
help="Skip URL encoding of POST data") help="Skip URL encoding of payload data")
request.add_option("--eval", dest="evalCode", request.add_option("--eval", dest="evalCode",
help="Evaluate provided Python code before the request (e.g. \"import hashlib;id2=hashlib.md5(id).hexdigest()\")") help="Evaluate provided Python code before the request (e.g. \"import hashlib;id2=hashlib.md5(id).hexdigest()\")")

View File

@ -134,7 +134,7 @@ safUrl =
# Default: 0 # Default: 0
saFreq = 0 saFreq = 0
# Skip URL encoding of POST data # Skip URL encoding of payload data
# Valid: True or False # Valid: True or False
skipUrlEncode = False skipUrlEncode = False