From a3f1b00ae6d46b0369204f809c638cf62ee80997 Mon Sep 17 00:00:00 2001 From: Caila Finn Date: Wed, 4 Dec 2024 12:11:52 +0000 Subject: [PATCH] Little change :) RE # --- .../src/PolarizationCorrections/PolarizerEfficiency.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Algorithms/src/PolarizationCorrections/PolarizerEfficiency.cpp b/Framework/Algorithms/src/PolarizationCorrections/PolarizerEfficiency.cpp index 19a405efa01f..bf986de9c4cd 100644 --- a/Framework/Algorithms/src/PolarizationCorrections/PolarizerEfficiency.cpp +++ b/Framework/Algorithms/src/PolarizationCorrections/PolarizerEfficiency.cpp @@ -48,7 +48,7 @@ static const std::string FILE_EXTENSION = ".nxs"; bool validateInputWorkspace(MatrixWorkspace_sptr const &ws, std::string const &propertyName, std::map &errorList) { if (ws == nullptr) { - errorList[propertyName] = "All input workspaces must be of type MatrixWorkspace."; + errorList[propertyName] = "All input workspaces must be of type MatrixWorkspace!"; return false; } if (ws->getNumberHistograms() != 1) {