Damn, forgot cert parameter.

This commit is contained in:
Roland Hedberg
2013-06-17 14:22:41 +02:00
parent d03a1b7ba9
commit c8643ab14d

View File

@@ -342,9 +342,10 @@ class MetaDataFile(MetaData):
Handles Metadata file on the same machine. The format of the file is
the SAML Metadata format.
"""
def __init__(self, onts, attrc, filename):
def __init__(self, onts, attrc, filename, cert=None):
MetaData.__init__(self, onts, attrc)
self.filename = filename
self.cert = cert
def load(self):
_txt = open(self.filename).read()