diff options
-rw-r--r-- | docs/src/themes/mitmproxydocs/static/css/style.css | 4 | ||||
-rw-r--r-- | mitmproxy/proxy/config.py | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/docs/src/themes/mitmproxydocs/static/css/style.css b/docs/src/themes/mitmproxydocs/static/css/style.css index 6a12b096..6029ddb6 100644 --- a/docs/src/themes/mitmproxydocs/static/css/style.css +++ b/docs/src/themes/mitmproxydocs/static/css/style.css @@ -6730,6 +6730,10 @@ label.panel-block { width: 100%; text-align: right; } +.sidebar { + background-color: #F1F1F1; +} + .sidebar .version { padding: 1em; } diff --git a/mitmproxy/proxy/config.py b/mitmproxy/proxy/config.py index 439beb3d..410ab701 100644 --- a/mitmproxy/proxy/config.py +++ b/mitmproxy/proxy/config.py @@ -53,7 +53,7 @@ class ProxyConfig: if not os.path.exists(os.path.dirname(certstore_path)): raise exceptions.OptionsError( "Certificate Authority parent directory does not exist: %s" % - os.path.dirname(options.cadir) + os.path.dirname(certstore_path) ) self.certstore = certs.CertStore.from_store( certstore_path, |