diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-07-06 02:15:54 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-07-06 02:15:54 +0200 |
commit | 5fed5753b4b3f360da9f63f9bf07943345a0479b (patch) | |
tree | ff0752d6c086a1748486965bac8ffc93527c2089 /libmproxy | |
parent | b0c366aa45886c645e06cb3d0498a7cb339b18e7 (diff) | |
download | mitmproxy-5fed5753b4b3f360da9f63f9bf07943345a0479b.tar.gz mitmproxy-5fed5753b4b3f360da9f63f9bf07943345a0479b.tar.bz2 mitmproxy-5fed5753b4b3f360da9f63f9bf07943345a0479b.zip |
fix command line help
Diffstat (limited to 'libmproxy')
-rw-r--r-- | libmproxy/cmdline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmproxy/cmdline.py b/libmproxy/cmdline.py index d1020a1a..e407cd10 100644 --- a/libmproxy/cmdline.py +++ b/libmproxy/cmdline.py @@ -246,7 +246,7 @@ def common_options(parser): group = parser.add_argument_group("Proxy Options") - # We could make a mutually exclusive group out of -R, -F, -T, but we don't do that because + # We could make a mutually exclusive group out of -R, -U, -T, but we don't do that because # - --upstream-server should be in that group as well, but it's already in a different group. # - our own error messages are more helpful group.add_argument( @@ -285,7 +285,7 @@ def common_options(parser): "Advanced Proxy Options", """ The following options allow a custom adjustment of the proxy behavior. - Normally, you don't want to use these options directly and use the provided wrappers instead (-R, -F, -T). + Normally, you don't want to use these options directly and use the provided wrappers instead (-R, -U, -T). """.strip() ) group.add_argument( |