Changeset 94d6752 in sasview for fittingview/src
- Timestamp:
- Aug 22, 2012 2:20:05 PM (12 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:
- 442b800
- Parents:
- 7887723
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fittingview/src/sans/perspectives/fitting/models.py
r082c565 r94d6752 26 26 Log a message in a file located in the user's home directory 27 27 """ 28 dir = os.path.join(os.path.expanduser("~"), '.sa nsview', PLUGIN_DIR)28 dir = os.path.join(os.path.expanduser("~"), '.sasview', PLUGIN_DIR) 29 29 out = open(os.path.join(dir, "plugins.log"), 'a') 30 30 out.write("%10g: %s\n" % (time.clock(), message)) … … 79 79 The plugin directory is located in the user's home directory. 80 80 """ 81 dir = os.path.join(os.path.expanduser("~"), '.sa nsview', PLUGIN_DIR)81 dir = os.path.join(os.path.expanduser("~"), '.sasview', PLUGIN_DIR) 82 82 83 83 # If the plugin directory doesn't exist, create it
Note: See TracChangeset
for help on using the changeset viewer.