configure.py: fix log message handling of r31896

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@31908 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2009-11-08 18:47:42 +00:00
parent 36540df0f5
commit ac3200a597

View File

@ -249,11 +249,13 @@ def checkLatex(dtl_tools):
def checkModule(module):
''' Check for a Python module, return the status '''
msg = 'checking for "' + module + ' module"... '
print 'checking for "' + module + ' module"... '
try:
__import__(module)
print "yes"
return True
except ImportError:
print "no"
return False