diff options
author | Lance Stout <lance@dingus.local> | 2011-05-27 16:39:45 -0700 |
---|---|---|
committer | Lance Stout <lance@dingus.local> | 2011-05-27 16:39:45 -0700 |
commit | 6997b2fbf87a080a12334b348653ed4cb30f9218 (patch) | |
tree | 48beb4ed848d91256ace092fac285499cfb3d94d /sleekxmpp/xmlstream/xmlstream.py | |
parent | b81ab979006956134e5d924640936fe8cc20dbf3 (diff) | |
download | slixmpp-6997b2fbf87a080a12334b348653ed4cb30f9218.tar.gz slixmpp-6997b2fbf87a080a12334b348653ed4cb30f9218.tar.bz2 slixmpp-6997b2fbf87a080a12334b348653ed4cb30f9218.tar.xz slixmpp-6997b2fbf87a080a12334b348653ed4cb30f9218.zip |
Fix typo for SSL certificate use.
Diffstat (limited to 'sleekxmpp/xmlstream/xmlstream.py')
-rw-r--r-- | sleekxmpp/xmlstream/xmlstream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index 6bf70fbf..1dc2d430 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -323,7 +323,7 @@ class XMLStream(object): ssl_socket = ssl.wrap_socket(self.socket, ca_certs=self.ca_certs, - certs_reqs=cert_policy) + cert_reqs=cert_policy) if hasattr(self.socket, 'socket'): # We are using a testing socket, so preserve the top |