Changeset 83eb5208 in sasview for src/sas/qtgui/Utilities
- Timestamp:
- Apr 19, 2017 3:58:36 AM (8 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:
- cd2cc745
- Parents:
- 6c8fb2c
- Location:
- src/sas/qtgui/Utilities
- Files:
-
- 2 added
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Utilities/GuiUtils.py
r7d077d1 r83eb5208 88 88 pass 89 89 #logging.error("Error loading %s/%s: %s" % (path, confg_file, sys.exc_value)) 90 except ValueError: 91 print "Value error" 92 pass 90 93 finally: 91 94 if fObj is not None: … … 117 120 #logging.info("found local_config in %s", PATH_APP) 118 121 119 120 122 from sas.sasgui.guiframe.customdir import SetupCustom 121 123 c_conf_dir = SetupCustom().setup_dir(PATH_APP) 124 122 125 custom_config = _find_local_config('custom_config', c_conf_dir) 123 126 if custom_config is None: -
src/sas/qtgui/Utilities/UnitTesting/GuiUtilsTest.py
r965fbd8 r83eb5208 8 8 9 9 # set up import paths 10 import path_prepare10 import sas.qtgui.path_prepare 11 11 12 12 # SV imports … … 17 17 18 18 # Tested module 19 from GuiUtils import *19 from sas.qtgui.Utilities.GuiUtils import * 20 20 21 21 app = QtGui.QApplication(sys.argv) -
src/sas/qtgui/Utilities/UnitTesting/SasviewLoggerTest.py
r31c5b58 r83eb5208 7 7 8 8 # set up import paths 9 import path_prepare9 import sas.qtgui.path_prepare 10 10 11 11 # Local 12 from SasviewLogger import XStream13 from SasviewLogger import QtHandler12 from sas.qtgui.Utilities.SasviewLogger import XStream 13 from sas.qtgui.Utilities.SasviewLogger import QtHandler 14 14 15 15 app = QApplication(sys.argv)
Note: See TracChangeset
for help on using the changeset viewer.