Skip to content

Commit a0b34d0

Browse files
author
Roland Hedberg
committed
Incorrect reference spotted by Tom Briles.
1 parent 25704a9 commit a0b34d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/saml2/sigver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,7 @@ def __init__(self, security_context, cert_file=None, cert_type="pem",
11381138
self._key_str = self._osw.read_str_from_file(key_file, key_type)
11391139
else:
11401140
self._key_str = ""
1141-
if cert_file and os.path.isfile(key_file):
1141+
if cert_file and os.path.isfile(cert_file):
11421142
self._cert_str = self._osw.read_str_from_file(cert_file,
11431143
cert_type)
11441144
else:

0 commit comments

Comments
 (0)