Changeset 77d92cd in sasview
- Timestamp:
- Jul 12, 2016 12:11:40 PM (8 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, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- a58706d
- Parents:
- dd5bf63
- Files:
-
- 3 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasview/sasview.py
r1be5202 r77d92cd 81 81 #Always use private .matplotlib setup to avoid conflicts with other 82 82 #uses of matplotlib 83 #Have to check if .sasview exists first 83 #Have to check if .sasview exists first 84 84 sasdir = os.path.join(os.path.expanduser("~"),'.sasview') 85 85 if not os.path.exists(sasdir): … … 119 119 # Fitting perspective 120 120 try: 121 import sas.sasgui.perspectives.fitting as module 121 import sas.sasgui.perspectives.fitting as module 122 122 fitting_plug = module.Plugin() 123 123 self.gui.add_perspective(fitting_plug) … … 145 145 logging.error(traceback.format_exc()) 146 146 147 #Calculator perspective 147 #Calculator perspective 148 148 try: 149 149 import sas.sasgui.perspectives.calculator as module … … 152 152 except: 153 153 logging.error("%s: could not find Calculator plug-in module"% \ 154 APP_NAME) 155 logging.error(traceback.format_exc()) 156 157 # File converter tool 158 try: 159 import sas.sasgui.perspectives.file_converter as module 160 converter_plug = module.Plugin() 161 self.gui.add_perspective(converter_plug) 162 except: 163 logging.error("%s: could not find File Converter plug-in module"% \ 154 164 APP_NAME) 155 165 logging.error(traceback.format_exc()) … … 191 201 if __name__ == "__main__": 192 202 run() 193
Note: See TracChangeset
for help on using the changeset viewer.