#9294: wrong usage of except
------------------------+---------------------------------------------------
   Reporter:  hemmecke  |       Owner:  jason, was
       Type:  defect    |      Status:  new       
   Priority:  major     |   Milestone:            
  Component:  notebook  |    Keywords:            
     Author:            |    Upstream:  N/A       
   Reviewer:            |      Merged:            
Work_issues:            |  
------------------------+---------------------------------------------------
 sagenb-0.8.p2/src/sagenb/sagenb/notebook/js.py

 says

 try:
     from sage.misc.misc import SAGE_ROOT
     from pkg_resources import Requirement, working_set
     sagenb_path = working_set.find(Requirement.parse('sagenb')).location
     debug_mode = SAGE_ROOT not in os.path.realpath(sagenb_path)
 except AttributeError, ImportError:
     debug_mode = False

 But according to what I cite below, it should rather be

 except (AttributeError, ImportError):

 http://docs.python.org/tutorial/errors.html

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9294>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en.

Reply via email to