Incorrect reference spotted by Tom Briles.

This commit is contained in:
Roland Hedberg
2014-12-12 08:31:04 +01:00
parent 25704a9fae
commit a0b34d0ebd

View File

@@ -1138,7 +1138,7 @@ class CertHandler(object):
self._key_str = self._osw.read_str_from_file(key_file, key_type)
else:
self._key_str = ""
if cert_file and os.path.isfile(key_file):
if cert_file and os.path.isfile(cert_file):
self._cert_str = self._osw.read_str_from_file(cert_file,
cert_type)
else: