Ignore:
File:
1 edited

Legend:

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

    r3090270 rd4ba565  
    28172817        self.current_shell_displayed = index 
    28182818 
    2819         # Change 'n' in the parameter model, thereby updating the underlying model 
    2820         self._model_model.item(self._n_shells_row, 1).setText(str(index)) 
    2821  
    28222819        # Update relevant models 
    28232820        self.setPolyModel() 
     
    31633160            formatted_output = FittingUtilities.formatParameters(param_list) 
    31643161        elif format == "Excel": 
    3165             formatted_output = FittingUtilities.formatParametersExcel(param_list) 
     3162            formatted_output = FittingUtilities.formatParametersExcel(param_list[1:]) 
    31663163        elif format == "Latex": 
    3167             formatted_output = FittingUtilities.formatParametersLatex(param_list) 
     3164            formatted_output = FittingUtilities.formatParametersLatex(param_list[1:]) 
    31683165        else: 
    31693166            raise AttributeError("Bad format specifier.") 
Note: See TracChangeset for help on using the changeset viewer.