Skip to content
Snippets Groups Projects
Commit 6e231f3b authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix typo

parent 6ae269df
No related branches found
No related tags found
No related merge requests found
......@@ -449,7 +449,7 @@ def _startSSL_stdlib(self):
def _ssl_verify_callback(self, sslconn, cert, errnum, depth, ok):
# Exceptions can't propagate up through this callback, so print them here.
try:
self._owner.ssl_fingerprint_sha1.ppend(cert.digest('sha1'))
self._owner.ssl_fingerprint_sha1.append(cert.digest('sha1'))
self._owner.ssl_certificate.append(cert)
self._owner.ssl_errnum.append(errnum)
self._owner.ssl_cert_pem.append(OpenSSL.crypto.dump_certificate(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment