diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-07-20 14:45:58 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-07-20 14:45:58 +1200 |
commit | a1a1663c0fc3a1e76637a0ef3997da697ea97cfe (patch) | |
tree | 2d05eead3ccca28f13fe879711c1aaf81fba38b8 | |
parent | 0791fe6cc63c9267ccf65de62c7686bb78489058 (diff) | |
download | mitmproxy-a1a1663c0fc3a1e76637a0ef3997da697ea97cfe.tar.gz mitmproxy-a1a1663c0fc3a1e76637a0ef3997da697ea97cfe.tar.bz2 mitmproxy-a1a1663c0fc3a1e76637a0ef3997da697ea97cfe.zip |
Fix cert path.
-rw-r--r-- | netlib/certutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/certutils.py b/netlib/certutils.py index 3effe610..1f61132e 100644 --- a/netlib/certutils.py +++ b/netlib/certutils.py @@ -45,7 +45,7 @@ def dummy_ca(path): basename, _ = os.path.splitext(path) basename = os.path.basename(basename) else: - basename = os.path.basename(basename) + basename = os.path.basename(path) key, ca = create_ca() |