summaryrefslogtreecommitdiff
path: root/sleekxmpp/features
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-10-10 11:42:24 -0700
committerLance Stout <lancestout@gmail.com>2012-10-10 11:42:24 -0700
commite2e8c4b5dcca3dddfda6e60850a6754018e8f60d (patch)
treeb17a3671337db9b339ee473d5e41896f16edd624 /sleekxmpp/features
parent675c0112ac935896e0d2a1674647c17884c62973 (diff)
downloadslixmpp-e2e8c4b5dcca3dddfda6e60850a6754018e8f60d.tar.gz
slixmpp-e2e8c4b5dcca3dddfda6e60850a6754018e8f60d.tar.bz2
slixmpp-e2e8c4b5dcca3dddfda6e60850a6754018e8f60d.tar.xz
slixmpp-e2e8c4b5dcca3dddfda6e60850a6754018e8f60d.zip
Remove unneeded ssl_support checks.
Diffstat (limited to 'sleekxmpp/features')
-rw-r--r--sleekxmpp/features/feature_starttls/starttls.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/sleekxmpp/features/feature_starttls/starttls.py b/sleekxmpp/features/feature_starttls/starttls.py
index 212b9da5..eb5eee1d 100644
--- a/sleekxmpp/features/feature_starttls/starttls.py
+++ b/sleekxmpp/features/feature_starttls/starttls.py
@@ -54,13 +54,9 @@ class FeatureSTARTTLS(BasePlugin):
return False
elif not self.xmpp.use_tls:
return False
- elif self.xmpp.ssl_support:
+ else:
self.xmpp.send(features['starttls'], now=True)
return True
- else:
- log.warning("The module tlslite is required to log in" + \
- " to some servers, and has not been found.")
- return False
def _handle_starttls_proceed(self, proceed):
"""Restart the XML stream when TLS is accepted."""