Changeset e540cd2 in sasview for src/sas/qtgui/LocalConfig.py


Ignore:
Timestamp:
Jul 7, 2016 4:54:18 AM (8 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
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
Message:

Status bar, progress bar, initial treeview context menu + minor cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/LocalConfig.py

    rf721030 re540cd2  
    44import time 
    55import os 
     6import logging 
     7 
    68from sas.sasgui.guiframe.gui_style import GUIFRAME 
    79import sas.sasview 
    8 import logging 
    910 
    1011# Version of the application 
     
    5859 
    5960icon_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "images")) 
    60 logging.info("icon path: %s" % icon_path) 
     61logging.info("icon path: %s", icon_path) 
    6162media_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "media")) 
    6263test_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "test")) 
     
    133134 
    134135def printEVT(message): 
     136    """ 
     137    Post a debug message to console/file 
     138    """ 
    135139    if __EVT_DEBUG__: 
    136         """ 
    137         :TODO - Need method doc string 
    138         """ 
    139140        print "%g:  %s" % (time.clock(), message) 
    140141 
Note: See TracChangeset for help on using the changeset viewer.