diff --git a/lib/damask/__init__.py b/lib/damask/__init__.py index 0849c1a40..fd81bd664 100644 --- a/lib/damask/__init__.py +++ b/lib/damask/__init__.py @@ -54,5 +54,5 @@ except (ImportError,AttributeError) as e: 'compile_CoreModule.py', ): sys.stderr.write('\nWARNING: Core module (Fortran code) not available, \n'\ - 'try to run setup_processing.sh or compile_CoreModule.py\n'\ + "try to run 'make processing'\n"\ 'Error message when importing core.so: %s\n\n'%e) diff --git a/lib/damask/config/material.py b/lib/damask/config/material.py index 2300746c3..1d08ef5cb 100644 --- a/lib/damask/config/material.py +++ b/lib/damask/config/material.py @@ -148,7 +148,7 @@ class Material(): for line in content: line = line.split('#')[0].strip() # kill comments and extra whitespace - line = line.split('/')[0].strip() # kill comments and extra whitespace + line = line.split('/echo/')[0].strip() # remove '/echo/' tags line = line.lower() # be case insensitive if line: # content survives... match_part = re_part.match(line)