Changeset 3658abed in sasview for sansview/sansview.py


Ignore:
Timestamp:
Jan 10, 2011 12:45:16 PM (14 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
7f84e22
Parents:
3e41f43
Message:

make fitting plugin_inheriting from pluginbase

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/sansview.py

    rb9b9930 r3658abed  
    7474        except: 
    7575            logging.error("SansView: could not find P(r) plug-in module")  
     76            logging.error(sys.exc_value)   
    7677         
    7778        #Invariant perspective 
     
    8283        except: 
    8384            logging.error("SansView: could not find Invariant plug-in module")  
     85            logging.error(sys.exc_value)   
    8486         
    8587        #Calculator perspective    
     
    8991            self.gui.add_perspective(calculator_plug) 
    9092        except: 
    91             logging.error("SansView: could not find Calculator plug-in module")  
     93            logging.error("SansView: could not find Calculator plug-in module") 
     94            logging.error(sys.exc_value)   
    9295             
    9396        # theory perspective 
     
    98101        except: 
    99102            logging.error("SansView: could not find theory plug-in module") 
     103            logging.error(sys.exc_value)   
    100104             
    101105        # Fitting perspective 
Note: See TracChangeset for help on using the changeset viewer.