diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 15:32:52 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 17:14:38 +0200 |
commit | 69e71097f7a9633a43d566b2a46aab370f07dce3 (patch) | |
tree | 117f58730fc647e219b362691f0365250b92c04f /netlib/certutils.py | |
parent | 40436ffb1f8293dde9217e2a0167e6c66b11d1f1 (diff) | |
download | mitmproxy-69e71097f7a9633a43d566b2a46aab370f07dce3.tar.gz mitmproxy-69e71097f7a9633a43d566b2a46aab370f07dce3.tar.bz2 mitmproxy-69e71097f7a9633a43d566b2a46aab370f07dce3.zip |
mark unused variables and arguments
Diffstat (limited to 'netlib/certutils.py')
-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 ade61bb5..c6f0e628 100644 --- a/netlib/certutils.py +++ b/netlib/certutils.py @@ -333,7 +333,7 @@ class CertStore(object): return entry.cert, entry.privatekey, entry.chain_file - def gen_pkey(self, cert): + def gen_pkey(self, cert_): # FIXME: We should do something with cert here? from . import certffi certffi.set_flags(self.default_privatekey, 1) |