Changeset f1ec901 in sasview for src/sas/sasgui
- Timestamp:
- Nov 21, 2017 5:21:57 AM (7 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:
- 0580c77
- Parents:
- 0261bc1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/pr/pr_thread.py
- Property mode changed from 100755 to 100644
rfa81e94 rf1ec901 41 41 # Thread was interrupted, just proceed 42 42 pass 43 except :43 except Exception as ex: 44 44 if self.error_func is not None: 45 self.error_func("CalcPr.compute: %s" % sys.exc_info()[1])45 self.error_func("CalcPr.compute: %s" % ex) 46 46 47 47 class EstimatePr(CalcThread): … … 69 69 # Thread was interrupted, just proceed 70 70 pass 71 except :71 except Exception as ex: 72 72 if self.error_func is not None: 73 self.error_func("EstimatePr.compute: %s" % sys.exc_info()[1])73 self.error_func("EstimatePr.compute: %s" % ex) 74 74 75 75 class EstimateNT(CalcThread): … … 109 109 # Thread was interrupted, just proceed 110 110 pass 111 except :111 except Exception as ex: 112 112 if self.error_func is not None: 113 self.error_func("EstimatePr2.compute: %s" % sys.exc_info()[1])113 self.error_func("EstimatePr2.compute: %s" % ex)
Note: See TracChangeset
for help on using the changeset viewer.