Skip to content
Snippets Groups Projects
Commit 6ca8c2dc authored by Dimitar Tasev's avatar Dimitar Tasev
Browse files

Replaced raise with logger, added copyright to two files, re #24007

parent 3fec3556
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,7 @@ from qtpy.QtWidgets import QMessageBox, QVBoxLayout
# third-party library imports
from mantid.api import AnalysisDataService
from mantid.kernel import logger
from mantidqt.widgets.instrumentview.presenter import InstrumentViewPresenter
from mantidqt.widgets.matrixworkspacedisplay.presenter import MatrixWorkspaceDisplay
from mantidqt.widgets.samplelogs.presenter import SampleLogs
......@@ -135,7 +136,8 @@ class WorkspaceWidget(PluginWidget):
presenter = TableWorkspaceDisplay(ws, plot=matplotlib.pyplot, parent=self)
presenter.view.show()
except ValueError as x:
raise x
logger.error(
"Could not open workspace: {0} with either MatrixWorkspaceDisplay nor TableWorkspaceDisplay.")
def _action_double_click_workspace(self, name):
self._do_show_data([name])
# Mantid Repository : https://github.com/mantidproject/mantid
#
# Copyright © 2019 ISIS Rutherford Appleton Laboratory UKRI,
# NScD Oak Ridge National Laboratory, European Spallation Source
# & Institut Laue - Langevin
# SPDX - License - Identifier: GPL - 3.0 +
# This file is part of the mantid workbench.
#
#
class ErrorColumn:
def __init__(self, column, error_for_column, label_index):
self.column = column
......
# Mantid Repository : https://github.com/mantidproject/mantid
#
# Copyright © 2019 ISIS Rutherford Appleton Laboratory UKRI,
# NScD Oak Ridge National Laboratory, European Spallation Source
# & Institut Laue - Langevin
# SPDX - License - Identifier: GPL - 3.0 +
# This file is part of the mantid workbench.
#
#
class MarkedColumns:
X_LABEL = "[X{}]"
Y_LABEL = "[Y{}]"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment