diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-01-03 15:29:32 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-01-03 15:29:32 +1300 |
commit | 3aa4b6603cc114d082cd11346be91576b9ca9d97 (patch) | |
tree | 11431b7873c45d3e848640fceb71568b747ab1fc /libmproxy/cmdline.py | |
parent | b9d4eb103e6b45cc331b0fc3cd5a0c693f1b669e (diff) | |
download | mitmproxy-3aa4b6603cc114d082cd11346be91576b9ca9d97.tar.gz mitmproxy-3aa4b6603cc114d082cd11346be91576b9ca9d97.tar.bz2 mitmproxy-3aa4b6603cc114d082cd11346be91576b9ca9d97.zip |
Fix app in mitmproxy console, update to bootstrap 3.
Diffstat (limited to 'libmproxy/cmdline.py')
-rw-r--r-- | libmproxy/cmdline.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libmproxy/cmdline.py b/libmproxy/cmdline.py index 4b5b0f5f..5114f371 100644 --- a/libmproxy/cmdline.py +++ b/libmproxy/cmdline.py @@ -271,7 +271,9 @@ def common_options(parser): group.add_argument( "--app-host", action="store", dest="app_host", default=APP_HOST, metavar="host", - help="Domain to serve the app from. For transparent mode, use an IP when a DNS entry for the app domain is not present." + help="Domain to serve the app from. For transparent mode, use an IP when\ + a DNS entry for the app domain is not present. Default: %s"%APP_HOST + ) group.add_argument( "--app-port", |