summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/cert.py
diff options
context:
space:
mode:
authorMike Taylor <bear42@gmail.com>2015-07-03 15:07:35 -0400
committerMike Taylor <bear42@gmail.com>2015-07-03 15:07:35 -0400
commitc024ac8f0b58d114d72660a1967f1632546606ed (patch)
tree5d1bb0dba79c46000fe2d4603ace49ddd6cc0c96 /sleekxmpp/xmlstream/cert.py
parenta8ac115310c1b9aaa80cc0d48a1157396b29abd3 (diff)
parentf00177c0cf5512a86b37ba69fc627ddf92abdc6b (diff)
downloadslixmpp-c024ac8f0b58d114d72660a1967f1632546606ed.tar.gz
slixmpp-c024ac8f0b58d114d72660a1967f1632546606ed.tar.bz2
slixmpp-c024ac8f0b58d114d72660a1967f1632546606ed.tar.xz
slixmpp-c024ac8f0b58d114d72660a1967f1632546606ed.zip
Merge pull request #382 from sangeeths/initialize_certificate
Initialize certfile, keyfile and ca_certs in XMLStream. Added **kwargs to ClientXMPP, BaseXMPP and XMLStream.
Diffstat (limited to 'sleekxmpp/xmlstream/cert.py')
-rw-r--r--sleekxmpp/xmlstream/cert.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/cert.py b/sleekxmpp/xmlstream/cert.py
index 71146f36..d357b326 100644
--- a/sleekxmpp/xmlstream/cert.py
+++ b/sleekxmpp/xmlstream/cert.py
@@ -181,4 +181,4 @@ def verify(expected, raw_cert):
return True
raise CertificateError(
- 'Could not match certficate against hostname: %s' % expected)
+ 'Could not match certificate against hostname: %s' % expected)