From da4dd836e397c08e5a23f1b65df78f5d8a0aaba1 2015-12-14 00:32:58 From: Miguel Valdez Date: 2015-12-14 00:32:58 Subject: [PATCH] Bug fixed in controller.py when floatList is used --- diff --git a/schainpy/controller.py b/schainpy/controller.py index 3e69ac3..f662351 100644 --- a/schainpy/controller.py +++ b/schainpy/controller.py @@ -91,7 +91,7 @@ class ParameterConf(): if type(new_value) not in (tuple, list): new_value = [float(new_value)] - self.__formated_value = floatList + self.__formated_value = new_value return self.__formated_value @@ -1183,7 +1183,7 @@ class Project(): break except ValueError, e: sleep(0.5) - self.__handleError(procUnitConfObj, send_email=False) + self.__handleError(procUnitConfObj, send_email=True) is_ok = False break except: