summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Stout <lance@dingus.local>2011-05-27 16:39:45 -0700
committerLance Stout <lance@dingus.local>2011-05-27 16:39:45 -0700
commit6997b2fbf87a080a12334b348653ed4cb30f9218 (patch)
tree48beb4ed848d91256ace092fac285499cfb3d94d
parentb81ab979006956134e5d924640936fe8cc20dbf3 (diff)
downloadslixmpp-6997b2fbf87a080a12334b348653ed4cb30f9218.tar.gz
slixmpp-6997b2fbf87a080a12334b348653ed4cb30f9218.tar.bz2
slixmpp-6997b2fbf87a080a12334b348653ed4cb30f9218.tar.xz
slixmpp-6997b2fbf87a080a12334b348653ed4cb30f9218.zip
Fix typo for SSL certificate use.
-rw-r--r--sleekxmpp/xmlstream/xmlstream.py2
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