Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Fomin <fominde@gmail.com>2012-04-22 21:48:36 +0400
committerDenis Fomin <fominde@gmail.com>2012-04-22 21:48:36 +0400
commit297032e6e62b3cde4179652feee7f94cac25277a (patch)
tree7315802a37819daee7a8ea6413380643d5e2e625
parentc3ab45efeba21ab2b87def86e47afe6a64875c0a (diff)
correct check pyopenssl installed
-rw-r--r--src/common/jingle_xtls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/jingle_xtls.py b/src/common/jingle_xtls.py
index edff95355..f475393bf 100644
--- a/src/common/jingle_xtls.py
+++ b/src/common/jingle_xtls.py
@@ -36,7 +36,7 @@ def approve_pending_content(id_):
content.session.approve_content('file', name=content.name)
try:
- import OpenSSL
+ import OpenSSL.SSL
PYOPENSSL_PRESENT = True
except ImportError:
log.info("PyOpenSSL not available")