Skip to content

Commit c8643ab

Browse files
author
Roland Hedberg
committed
Damn, forgot cert parameter.
1 parent d03a1b7 commit c8643ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/saml2/mdstore.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,9 +342,10 @@ class MetaDataFile(MetaData):
342342
Handles Metadata file on the same machine. The format of the file is
343343
the SAML Metadata format.
344344
"""
345-
def __init__(self, onts, attrc, filename):
345+
def __init__(self, onts, attrc, filename, cert=None):
346346
MetaData.__init__(self, onts, attrc)
347347
self.filename = filename
348+
self.cert = cert
348349

349350
def load(self):
350351
_txt = open(self.filename).read()

0 commit comments

Comments
 (0)