Changeset b9a5f0e in sasview for src/sas/guiframe
- Timestamp:
- Feb 13, 2015 4:52:52 AM (10 years ago)
- Branches:
- master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- fd5ac0d
- Parents:
- 35ec279
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/guiframe/gui_manager.py
r79492222 rb9a5f0e 69 69 logging.info(sys.executable) 70 70 logging.info(str(sys.argv)) 71 from sas import sa nsview as sasview71 from sas import sasview as sasview 72 72 app_path = os.path.dirname(sasview.__file__) 73 73 logging.info("Using application path: %s", app_path) … … 113 113 if config is None: 114 114 # Didn't find local config, load the default 115 import sas.guiframe.config as config115 import sas.guiframe.config as config 116 116 logging.info("using default local_config") 117 117 else: … … 2116 2116 """ 2117 2117 if config._do_aboutbox: 2118 import sas.guiframe.aboutbox as AboutBox2118 import sas.guiframe.aboutbox as AboutBox 2119 2119 dialog = AboutBox.DialogAbout(None, -1, "") 2120 2120 dialog.ShowModal()
Note: See TracChangeset
for help on using the changeset viewer.