Commit 89cbd6c2 authored by Jason R. Coombs's avatar Jason R. Coombs

Remove unused parameter

parent f024bd4e
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment