diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-03-07 15:20:15 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-03-07 15:20:15 +1300 |
commit | d0e6fa270533689fdaca0daab2d9dfa209bdfc26 (patch) | |
tree | f67972fe2fe5ca7fad3891aaaceea076a33828fb /libmproxy/proxy.py | |
parent | d65f2215cb9191a24b36ad6a4fcbf474798d3b2d (diff) | |
download | mitmproxy-d0e6fa270533689fdaca0daab2d9dfa209bdfc26.tar.gz mitmproxy-d0e6fa270533689fdaca0daab2d9dfa209bdfc26.tar.bz2 mitmproxy-d0e6fa270533689fdaca0daab2d9dfa209bdfc26.zip |
Use the right conf dir...
Diffstat (limited to 'libmproxy/proxy.py')
-rw-r--r-- | libmproxy/proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/proxy.py b/libmproxy/proxy.py index 1eebba07..6dd37752 100644 --- a/libmproxy/proxy.py +++ b/libmproxy/proxy.py @@ -55,7 +55,7 @@ class ProxyConfig: self.transparent_proxy = transparent_proxy self.authenticator = authenticator self.confdir = os.path.expanduser(confdir) - self.certstore = certutils.CertStore.from_store(confdir, CONF_BASENAME) + self.certstore = certutils.CertStore.from_store(self.confdir, CONF_BASENAME) |