Changeset 28d070a in sasview
- Timestamp:
- Aug 21, 2018 4:47:33 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- c0de493
- Parents:
- b51c8fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FitThread.py
r235d766 r28d070a 3 3 import copy 4 4 import traceback 5 import logging 5 6 6 7 from sas.sascalc.data_util.calcthread import CalcThread 8 9 logger = logging.getLogger(__name__) 7 10 8 11 def map_getattr(classInstance, classFunc, *args): … … 93 96 self.handler.stop(msg=msg) 94 97 except Exception as ex: 98 logger.error("Fitting failed: %s", traceback.format_exc()) 95 99 # print "ERROR IN FIT THREAD: ", traceback.format_exc() 96 100 if self.handler is not None:
Note: See TracChangeset
for help on using the changeset viewer.