From 3f9d642d87580110488f77465f051eca9c89332a Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Mon, 29 Apr 2013 16:30:08 +0000 Subject: [PATCH] corrected error message when complaining about uncompiled core module --- lib/damask/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/damask/__init__.py b/lib/damask/__init__.py index 9c57ed62f..bd8cecfb1 100644 --- a/lib/damask/__init__.py +++ b/lib/damask/__init__.py @@ -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)