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/guiframe/data_processor.py

    r7432acb rb9d74f3  
    907907                    msg = "Edit axis doesn't understand this selection.\n" 
    908908                    msg += "Please select only one column" 
    909                     raise ValueError, msg 
     909                    raise ValueError(msg) 
    910910            for (_, cell_col) in grid.selected_cells: 
    911911                if cell_col != col: 
     
    913913                    msg += "this operation.\n" 
    914914                    msg += "Please select elements of the same col.\n" 
    915                     raise ValueError, msg 
     915                    raise ValueError(msg) 
    916916 
    917917            # Finally check the highlighted cell if any cells missing 
     
    920920            msg = "No item selected.\n" 
    921921            msg += "Please select only one column or one cell" 
    922             raise ValueError, msg 
     922            raise ValueError(msg) 
    923923        return grid.selected_cells 
    924924 
     
    13241324            if sentence.strip() == "": 
    13251325                msg = "Select column values for x axis" 
    1326                 raise ValueError, msg 
     1326                raise ValueError(msg) 
    13271327        except: 
    13281328            msg = "X axis value error." 
     
    13431343            if sentence.strip() == "": 
    13441344                msg = "select value for y axis" 
    1345                 raise ValueError, msg 
     1345                raise ValueError(msg) 
    13461346        except: 
    13471347            msg = "Y axis value error." 
Note: See TracChangeset for help on using the changeset viewer.