From 0faba5147be4c120ac1f666f0e0fb53731d7db86 Mon Sep 17 00:00:00 2001 From: Keith Brown Date: Wed, 12 Mar 2014 15:57:06 +0000 Subject: [PATCH] Refs #9170 fixed a typo and added a rethrow An except wan't rethrowing when it should have, so i made it rethrow there was a typo on one of the renamed methods --- Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py b/Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py index be5d8c6ada1e..4e872b011b11 100644 --- a/Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py +++ b/Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py @@ -441,6 +441,7 @@ def _process(self): self.statusMain.clearMessage() except: self.statusMain.clearMessage() + raise def _plot(self, plotbutton): if not isinstance(plotbutton, QtGui.QPushButton): @@ -597,7 +598,7 @@ def _save(self, failsave = False): return False return self._save_table_contents(filename) - def _saveAs(self): + def _save_as(self): saveDialog = QtGui.QFileDialog(self.widgetMainRow.parent(), "Save Table") saveDialog.setFileMode(QtGui.QFileDialog.AnyFile) saveDialog.setNameFilter("Table Files (*.tbl);;All files (*.*)")