corrected error message when complaining about uncompiled core module

This commit is contained in:
Martin Diehl 2013-04-29 16:30:08 +00:00
parent 12ca2c1931
commit 3f9d642d87
1 changed files with 3 additions and 2 deletions

View File

@ -49,5 +49,6 @@ except (ImportError,AttributeError) as e:
if os.path.split(sys.argv[0])[1] not in ('symLink_Processing.py',
'compile_CoreModule.py',
):
sys.stderr.write('\nWARNING: Core module (Fortran code) not available, '\
'try to run setup_processing.py\nError Message when importing core.so: %s\n\n'%e)
sys.stderr.write('\nWARNING: Core module (Fortran code) not available, \n'\
'try to run setup_processing.sh or compile_CoreModule.py\n'\
'Error Message when importing core.so: %s\n\n'%e)