Changeset 095b6ec in sasview
- Timestamp:
- Dec 15, 2011 4:03:34 PM (13 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:
- 4bab790
- Parents:
- a97003e
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/gui_manager.py
ra97003e r095b6ec 46 46 DATAPATH = PATH_APP 47 47 48 def get_user_directory(): 49 USERDIR = os.path.join(os.path.expanduser("~"),".sansview") 50 if not os.path.isdir(USERDIR): 51 os.makedirs(USERDIR) 52 return USERDIR 53 48 54 def _find_local_config(file, path): 49 55 """ -
sansview/sansview.py
r0bc2ed1 r095b6ec 27 27 import local_config 28 28 import logging 29 logging.basicConfig(level=logging.INFO, 30 format='%(asctime)s %(levelname)s %(message)s', 31 filename=os.path.join(gui_manager.get_user_directory(),'sansview.log'), 32 filemode='w') 29 33 30 34 def run():
Note: See TracChangeset
for help on using the changeset viewer.