Changeset fac42cf in sasview
- Timestamp:
- May 14, 2018 5:36:59 AM (7 years ago)
- Branches:
- master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, unittest-saveload
- Children:
- 1270e3c
- Parents:
- e979ad4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasview/sasview.py
re979ad4 rfac42cf 137 137 tools for installation 138 138 """ 139 #wx should be importable at this stage 139 140 import wx 140 141 import subprocess … … 159 160 160 161 #Create the OK button in the bottom row. 161 #ok_button = wx.Button(panel, wx.ID_OK )162 162 ok_button = wx.Button(panel, wx.ID_OK ) 163 163 self.Bind(wx.EVT_BUTTON, self.on_ok, source=ok_button) … … 172 172 def on_ok(self, event): 173 173 self.Destroy() 174 174 175 logger = logging.getLogger(__name__) 175 176 try: … … 185 186 logger.error("No compiler installed. %s\n"%(exc)) 186 187 logger.error(traceback.format_exc()) 187 188 #raise RuntimeError("Terminating sasview")189 188 190 189 def setup_logging():
Note: See TracChangeset
for help on using the changeset viewer.