Changeset f182f93 in sasview for src/sas/sasgui/perspectives/fitting/fit_thread.py
- Timestamp:
- Apr 5, 2017 10:44:27 AM (8 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 454670d
- Parents:
- 116260a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/fitting/fit_thread.py
raac161f1 rf182f93 89 89 elapsed=time.time() - self.starttime) 90 90 91 return result[0], time.time()-self.starttime 92 91 93 except KeyboardInterrupt, msg: 92 94 # Thread was interrupted, just proceed and re-raise. … … 100 102 if self.handler is not None: 101 103 self.handler.stop(msg=msg) 102 except: 104 except Exception as ex: 105 #print "EXCEPTION: ", ex 103 106 import traceback 104 107 if self.handler is not None:
Note: See TracChangeset
for help on using the changeset viewer.