diff options
author | Sangeeth Saravanaraj <sangeeth@riptideio.com> | 2015-06-05 12:25:41 +0530 |
---|---|---|
committer | Sangeeth Saravanaraj <sangeeth@riptideio.com> | 2015-06-05 12:25:41 +0530 |
commit | 9b25a7cf77b969a2cc923773855cb482c314b511 (patch) | |
tree | 8da31346c608dfebcc651f7c195e70269a296978 | |
parent | a8ac115310c1b9aaa80cc0d48a1157396b29abd3 (diff) | |
download | slixmpp-9b25a7cf77b969a2cc923773855cb482c314b511.tar.gz slixmpp-9b25a7cf77b969a2cc923773855cb482c314b511.tar.bz2 slixmpp-9b25a7cf77b969a2cc923773855cb482c314b511.tar.xz slixmpp-9b25a7cf77b969a2cc923773855cb482c314b511.zip |
Fixed typo.
-rw-r--r-- | sleekxmpp/xmlstream/cert.py | 2 |
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) |