Changeset fa81e94 in sasview for src/sas/sasgui/perspectives/pr/explore_dialog.py
- Timestamp:
- Nov 15, 2017 4:33:09 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:
- d4881f6a
- Parents:
- 7c487846
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/pr/explore_dialog.py
- Property mode changed from 100644 to 100755
r959eb01 rfa81e94 35 35 from sas.sasgui.plottools.plottables import Graph 36 36 37 from pr_widgets import PrTextCtrl37 from .pr_widgets import PrTextCtrl 38 38 39 39 # Default number of points on the output plot … … 331 331 selection_msg = wx.StaticText(self, -1, "Select a dependent variable:") 332 332 self.output_box = wx.ComboBox(self, -1, style=wx.CB_READONLY) 333 for item in self.results.outputs.keys():333 for item in list(self.results.outputs.keys()): 334 334 self.output_box.Append(item, "") 335 335 self.output_box.SetStringSelection(DEFAULT_OUTPUT) … … 419 419 # This inversion failed, skip this D_max value 420 420 msg = "ExploreDialog: inversion failed " 421 msg += "for D_max=%s\n%s" % (str(d), sys.exc_ value)421 msg += "for D_max=%s\n%s" % (str(d), sys.exc_info()[1]) 422 422 logger.error(msg) 423 423
Note: See TracChangeset
for help on using the changeset viewer.