Changeset 0261bc1 in sasview for src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
- Timestamp:
- Nov 20, 2017 5:55:30 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:
- f1ec901
- Parents:
- 6a3e1fe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
r7c487846 r0261bc1 591 591 try: 592 592 value = GuiUtils.toDouble(item.text()) 593 except ValueError:593 except TypeError: 594 594 # Can't be converted properly, bring back the old value and exit 595 595 return … … 606 606 try: 607 607 value = GuiUtils.toDouble(item.text()) 608 except ValueError:608 except TypeError: 609 609 # Can't be converted properly, bring back the old value and exit 610 610 return … … 639 639 try: 640 640 value = GuiUtils.toDouble(item.text()) 641 except ValueError:641 except TypeError: 642 642 # Unparsable field 643 643 return … … 1310 1310 try: 1311 1311 value = GuiUtils.toDouble(item.text()) 1312 except ValueError:1312 except TypeError: 1313 1313 # Unparsable field 1314 1314 return
Note: See TracChangeset
for help on using the changeset viewer.