Changeset 10b3e1e in sasview


Ignore:
Timestamp:
Aug 23, 2012 1:40:41 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:
7bfc888
Parents:
1e40ed1
Message:

fixed minor problem in logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/sansview.py

    rc329f4d r10b3e1e  
    6868            self.gui.add_perspective(fitting_plug) 
    6969        except: 
    70             logging.error("%s: could not find Fitting plug-in module")% APP_NAME  
     70            logging.error("%s: could not find Fitting plug-in module"% APP_NAME)  
    7171            logging.error(sys.exc_value)   
    7272             
     
    7777            self.gui.add_perspective(pr_plug) 
    7878        except: 
    79             logging.error("%s: could not find P(r) plug-in module")% APP_NAME 
     79            logging.error("%s: could not find P(r) plug-in module"% APP_NAME) 
    8080            logging.error(sys.exc_value)   
    8181         
     
    8787        except: 
    8888            raise 
    89             logging.error("%s: could not find Invariant plug-in module")% \ 
    90                                                         APP_NAME  
     89            logging.error("%s: could not find Invariant plug-in module"% \ 
     90                          APP_NAME) 
    9191            logging.error(sys.exc_value)   
    9292         
     
    9797            self.gui.add_perspective(calculator_plug) 
    9898        except: 
    99             logging.error("%s: could not find Calculator plug-in module")% \ 
    100                                                         APP_NAME 
     99            logging.error("%s: could not find Calculator plug-in module"% \ 
     100                                                        APP_NAME) 
    101101            logging.error(sys.exc_value)   
    102102 
Note: See TracChangeset for help on using the changeset viewer.