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:
authorjunglecow <junglecow@no-mail.com>2006-12-29 04:46:46 +0300
committerjunglecow <junglecow@no-mail.com>2006-12-29 04:46:46 +0300
commit5529852ded31f9c288f55ccafbf5b4b4e3869ba5 (patch)
tree6ee5c504628d1959885a25a607e9f74c18bc671d /src/common/xmpp
parentd027597bf8cf1fed035213af3eff903775a00e7e (diff)
- Fix TB on fingerprint mismatch
- Add debug message on import failure of PyOpenSSL - Update gajim.org digest after migration to new server
Diffstat (limited to 'src/common/xmpp')
-rw-r--r--src/common/xmpp/transports_nb.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/xmpp/transports_nb.py b/src/common/xmpp/transports_nb.py
index 77d4ad200..66da4b57f 100644
--- a/src/common/xmpp/transports_nb.py
+++ b/src/common/xmpp/transports_nb.py
@@ -41,6 +41,8 @@ try:
USE_PYOPENSSL = True
log.info("PyOpenSSL loaded")
except ImportError:
+ log.debug("Import of PyOpenSSL failed:", exc_info=True)
+
# FIXME: Remove these prints before release, replace with a warning dialog.
print >> sys.stderr, "=" * 79
print >> sys.stderr, "PyOpenSSL not found, falling back to Python builtin SSL objects (insecure)."