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

github.com/Jajcus/pyxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacek Konieczny <jajcus@jajcus.net>2006-10-24 12:36:43 +0400
committerJacek Konieczny <jajcus@jajcus.net>2006-10-24 12:36:43 +0400
commitd516ee4510d2d010aeea5b0bd6720d88922b2a1e (patch)
treebf8d9d285abc5760313d0607eba661bcbe55210c /configure.py
parent00cbaa447330ec52d7cca990ed8004cc40686fbe (diff)
- do not try to print M2Crypto version if M2Crypto is not available
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index d6bf578..2c32f46 100755
--- a/configure.py
+++ b/configure.py
@@ -40,10 +40,10 @@ try:
from M2Crypto import SSL
from M2Crypto.SSL import SSLError
import M2Crypto.SSL.cb
+ print "version %s found. Hope it will work." % (M2Crypto.version,)
except ImportError:
print "not found"
print >>sys.stderr, "Warning: You need M2Crypto (some good version) for StartTLS support in PyXMPP"
-print "version %s found. Hope it will work." % (M2Crypto.version,)
print "Trying to build the binary extension...",
build_cfg = file("build.cfg", "w")