Changeset 0d8b2db in sasview
- Timestamp:
- Aug 21, 2018 5:42:18 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:
- 30339cc, f7d39c9
- Parents:
- 4e887d8 (diff), 28d070a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 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: -
build_tools/conda_qt5_win.yml
rc972e3a r4e887d8 3 3 - conda-forge 4 4 dependencies: 5 - matplotlib 5 - matplotlib==2.1.0 6 6 - scipy 7 7 - hdf5
Note: See TracChangeset
for help on using the changeset viewer.