diff options
author | elitest <dcypherd@gmail.com> | 2015-03-01 20:49:03 -0600 |
---|---|---|
committer | elitest <dcypherd@gmail.com> | 2015-03-01 20:49:03 -0600 |
commit | c6f54605a72fa577ad1c968eb438f0aad8347c82 (patch) | |
tree | b6f96217148c9f77634a8cff0dde4424765610a4 /libmproxy | |
parent | 13e74facb6b7af85cd9543ec56e01c3cd9b8270b (diff) | |
download | mitmproxy-c6f54605a72fa577ad1c968eb438f0aad8347c82.tar.gz mitmproxy-c6f54605a72fa577ad1c968eb438f0aad8347c82.tar.bz2 mitmproxy-c6f54605a72fa577ad1c968eb438f0aad8347c82.zip |
Update Config.py to clarify help messages
Diffstat (limited to 'libmproxy')
-rw-r--r-- | libmproxy/proxy/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmproxy/proxy/config.py b/libmproxy/proxy/config.py index e8c75bee..a4765852 100644 --- a/libmproxy/proxy/config.py +++ b/libmproxy/proxy/config.py @@ -220,12 +220,12 @@ def ssl_option_group(parser): group.add_argument( "--client-ciphers", action="store", type=str, dest="client_ciphers", default=None, - help="Proxy client SSL cipher specification." + help="Client facing SSL cipher specification." ) group.add_argument( "--server-ciphers", action="store", type=str, dest="server_ciphers", default=None, - help="Proxy server SSL cipher specification." + help="Server facing SSL cipher specification." ) group.add_argument( "--cert-forward", action="store_true", |