Ignore:
Timestamp:
Apr 20, 2017 6:29:34 AM (8 years ago)
Author:
andyfaff
Children:
0cc77d8
Parents:
b636dfc5
git-author:
Andrew Nelson <andyfaff@…> (04/20/17 06:25:57)
git-committer:
Andrew Nelson <andyfaff@…> (04/20/17 06:29:34)
Message:

MAINT: use raise Exception() not raise Exception

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/fitting/fitpage.py

    red2276f rb9d74f3  
    18471847                    wx.PostEvent(self._manager.parent, StatusEvent(status=msg, 
    18481848                                               info="error")) 
    1849                     raise ValueError, msg 
     1849                    raise ValueError(msg) 
    18501850 
    18511851            else: 
     
    18591859                    wx.PostEvent(self._manager.parent, StatusEvent(status=msg, 
    18601860                                               info="error")) 
    1861                     raise ValueError, msg 
     1861                    raise ValueError(msg) 
    18621862                # Maximum value of data 
    18631863                qmax = math.sqrt(x * x + y * y) 
     
    20982098        self._on_fit_complete() 
    20992099        if out is None or not np.isfinite(chisqr): 
    2100             raise ValueError, "Fit error occured..." 
     2100            raise ValueError("Fit error occured...") 
    21012101 
    21022102        is_modified = False 
     
    21732173                i += 1 
    21742174            else: 
    2175                 raise ValueError, "onsetValues: Invalid parameters..." 
     2175                raise ValueError("onsetValues: Invalid parameters...") 
    21762176        # Show error title when any errors displayed 
    21772177        if has_error: 
Note: See TracChangeset for help on using the changeset viewer.