Changeset 94d6752 in sasview


Ignore:
Timestamp:
Aug 22, 2012 2:20:05 PM (12 years ago)
Author:
Jae Cho <jhjcho@…>
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:
442b800
Parents:
7887723
Message:

set .sansview dir to .sasview dir

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • fittingview/src/sans/perspectives/fitting/models.py

    r082c565 r94d6752  
    2626        Log a message in a file located in the user's home directory 
    2727    """ 
    28     dir = os.path.join(os.path.expanduser("~"), '.sansview', PLUGIN_DIR) 
     28    dir = os.path.join(os.path.expanduser("~"), '.sasview', PLUGIN_DIR) 
    2929    out = open(os.path.join(dir, "plugins.log"), 'a') 
    3030    out.write("%10g:  %s\n" % (time.clock(), message)) 
     
    7979        The plugin directory is located in the user's home directory. 
    8080    """ 
    81     dir = os.path.join(os.path.expanduser("~"), '.sansview', PLUGIN_DIR) 
     81    dir = os.path.join(os.path.expanduser("~"), '.sasview', PLUGIN_DIR) 
    8282     
    8383    # If the plugin directory doesn't exist, create it 
  • sansguiframe/src/sans/guiframe/customdir.py

    r8ab3302 r94d6752  
    55 
    66CONF_DIR = 'config'  
    7 APPLICATION_NAME = 'sansview' 
     7APPLICATION_NAME = 'sasview' 
    88 
    99def _find_customconf_dir(): 
Note: See TracChangeset for help on using the changeset viewer.