Changeset e540cd2 in sasview for src/sas/qtgui/LocalConfig.py
- Timestamp:
- Jul 7, 2016 4:54:18 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:
- 0cd8612
- Parents:
- f0f309d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/LocalConfig.py
rf721030 re540cd2 4 4 import time 5 5 import os 6 import logging 7 6 8 from sas.sasgui.guiframe.gui_style import GUIFRAME 7 9 import sas.sasview 8 import logging9 10 10 11 # Version of the application … … 58 59 59 60 icon_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "images")) 60 logging.info("icon path: %s" %icon_path)61 logging.info("icon path: %s", icon_path) 61 62 media_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "media")) 62 63 test_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "test")) … … 133 134 134 135 def printEVT(message): 136 """ 137 Post a debug message to console/file 138 """ 135 139 if __EVT_DEBUG__: 136 """137 :TODO - Need method doc string138 """139 140 print "%g: %s" % (time.clock(), message) 140 141
Note: See TracChangeset
for help on using the changeset viewer.