diff --git a/pyfstat/core.py b/pyfstat/core.py index e781c8828655000e9bd8a1aa0ee9e5515139e9f5..3b9fb7504933e3840a05160f686238499a2101bd 100755 --- a/pyfstat/core.py +++ b/pyfstat/core.py @@ -120,10 +120,14 @@ def _get_dictionary_from_lines(lines, comments, raise_error): try: key, val = line.rstrip('\n').split('=') key = key.strip() - try: - d[key] = np.float64(eval(val.rstrip('; '))) - except NameError: - d[key] = val.rstrip('; ') + val = val.strip() + if (val[0] in ["'", '"']) and (val[-1] in ["'", '"']): + d[key] = val.lstrip('"').lstrip("'").rstrip('"').rstrip("'") + else: + try: + d[key] = np.float64(eval(val.rstrip('; '))) + except NameError: + d[key] = val.rstrip('; ') except SyntaxError: if raise_error: raise IOError('Line {} not understood'.format(line))