Changeset fa81e94 in sasview for src/sas/sasgui/guiframe/local_perspectives/plotting/plotting.py
- Timestamp:
- Nov 15, 2017 4:33:09 AM (7 years ago)
- Branches:
- 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
- Children:
- d4881f6a
- Parents:
- 7c487846
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/guiframe/local_perspectives/plotting/plotting.py
r2d9526d rfa81e94 200 200 201 201 msg = "1D Panel of group ID %s could not be created" % str(group_id) 202 raise ValueError, msg202 raise (ValueError, msg) 203 203 204 204 def create_2d_panel(self, data, group_id): … … 218 218 return new_panel 219 219 msg = "2D Panel of group ID %s could not be created" % str(group_id) 220 raise ValueError, msg220 raise (ValueError, msg) 221 221 222 222 def update_panel(self, data, panel): … … 238 238 msg += " to panel %s\n" % str(panel.window_caption) 239 239 msg += "Please edit %s's units, labels" % str(data.name) 240 raise ValueError, msg240 raise (ValueError, msg) 241 241 else: 242 242 if panel.group_id not in data.list_group_id:
Note: See TracChangeset
for help on using the changeset viewer.