diff options
Diffstat (limited to 'setuptools/ssl_support.py')
| -rw-r--r-- | setuptools/ssl_support.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/ssl_support.py b/setuptools/ssl_support.py index d827d11b..efd22d5f 100644 --- a/setuptools/ssl_support.py +++ b/setuptools/ssl_support.py @@ -222,11 +222,10 @@ def get_win_certfile(): return None class MyCertFile(CertFile): - def __init__(self, stores=(), certs=()): + def __init__(self, stores=()): CertFile.__init__(self) for store in stores: self.addstore(store) - self.addcerts(certs) atexit.register(self.close) def close(self): |
