diff --git a/pylot/core/io/inputs.py b/pylot/core/io/inputs.py index 9aa9b5d2..9b23612d 100644 --- a/pylot/core/io/inputs.py +++ b/pylot/core/io/inputs.py @@ -208,7 +208,10 @@ class PylotParameter(object): vallist = value.strip().split(' ') val = [] for val0 in vallist: - val0 = float(val0) + try: + val0 = float(val0) + except: + pass val.append(val0) else: val = str(value.strip())