From c8643ab14d539d06b12a8529c4e25a2de7a856ea Mon Sep 17 00:00:00 2001 From: Roland Hedberg Date: Mon, 17 Jun 2013 14:22:41 +0200 Subject: [PATCH] Damn, forgot cert parameter. --- src/saml2/mdstore.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/saml2/mdstore.py b/src/saml2/mdstore.py index 1d63ffb..78b4b36 100644 --- a/src/saml2/mdstore.py +++ b/src/saml2/mdstore.py @@ -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()