summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sleekxmpp/xmlstream/xmlstream.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py
index 064b52dc..c5c9fe38 100644
--- a/sleekxmpp/xmlstream/xmlstream.py
+++ b/sleekxmpp/xmlstream/xmlstream.py
@@ -519,11 +519,11 @@ class XMLStream(object):
cert_policy = ssl.CERT_REQUIRED
ssl_args = {
- 'certfile': self.certfile,
- 'keyfile': self.keyfile,
- 'ca_certs': self.ca_certs,
- 'cert_reqs': cert_policy,
- 'do_handshake_on_connect': False,
+ b'certfile': self.certfile,
+ b'keyfile': self.keyfile,
+ b'ca_certs': self.ca_certs,
+ b'cert_reqs': cert_policy,
+ b'do_handshake_on_connect': False,
}
if sys.version_info >= (2, 7):
@@ -843,11 +843,11 @@ class XMLStream(object):
cert_policy = ssl.CERT_REQUIRED
ssl_args = {
- 'certfile': self.certfile,
- 'keyfile': self.keyfile,
- 'ca_certs': self.ca_certs,
- 'cert_reqs': cert_policy,
- 'do_handshake_on_connect': False,
+ b'certfile': self.certfile,
+ b'keyfile': self.keyfile,
+ b'ca_certs': self.ca_certs,
+ b'cert_reqs': cert_policy,
+ b'do_handshake_on_connect': False,
}
if sys.version_info >= (2, 7):