@@ -956,7 +956,7 class Project(Process): | |||
|
956 | 956 | |
|
957 | 957 | self.procUnitConfObjDict = newProcUnitConfObjDict |
|
958 | 958 | |
|
959 |
def setup(self, id, name='', description='', email=None, alarm=[ |
|
|
959 | def setup(self, id, name='', description='', email=None, alarm=[]): | |
|
960 | 960 | |
|
961 | 961 | |
|
962 | 962 | print '*' * 60 |
@@ -1186,6 +1186,9 class Project(Process): | |||
|
1186 | 1186 | |
|
1187 | 1187 | if modes is None: |
|
1188 | 1188 | modes = self.alarm |
|
1189 | ||
|
1190 | if not self.alarm: | |
|
1191 | modes = [] | |
|
1189 | 1192 | |
|
1190 | 1193 | err = traceback.format_exception(sys.exc_info()[0], |
|
1191 | 1194 | sys.exc_info()[1], |
@@ -1302,6 +1305,8 class Project(Process): | |||
|
1302 | 1305 | is_ok = is_ok or sts |
|
1303 | 1306 | except SchainWarning: |
|
1304 | 1307 | err = self.__handleError(procUnitConfObj, modes=[2, 3], stdout=False) |
|
1308 | is_ok = False | |
|
1309 | break | |
|
1305 | 1310 | except KeyboardInterrupt: |
|
1306 | 1311 | is_ok = False |
|
1307 | 1312 | break |
General Comments 0
You need to be logged in to leave comments.
Login now