Ignore:
Timestamp:
Sep 24, 2018 8:17:36 AM (6 years ago)
Author:
rozyczko <piotr.rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
ee22241
Parents:
7879745
Message:

Set pointer to the correct set of data in batch fitting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/FittingUtilities.py

    r30bed93 r712db9e  
    549549                      "Data2D": residualsData2D} 
    550550 
    551     residuals = residuals_dict[method_name](reference_data, data_copy) 
     551    try: 
     552        residuals = residuals_dict[method_name](reference_data, data_copy) 
     553    except ValueError: 
     554        return None 
    552555 
    553556    theory_name = str(current_data.name.split()[0]) 
Note: See TracChangeset for help on using the changeset viewer.