From 94c9e68794c6cd876ac4808f5ae474af15bfb4cd Mon Sep 17 00:00:00 2001
From: Martyn Gigg <martyn.gigg@stfc.ac.uk>
Date: Fri, 9 Mar 2012 12:14:24 +0000
Subject: [PATCH] Refs #4399. Fix another case-issue in an export

---
 .../mantid/geometry/src/Exports/DetectorGroup.cpp               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Code/Mantid/Framework/PythonInterface/mantid/geometry/src/Exports/DetectorGroup.cpp b/Code/Mantid/Framework/PythonInterface/mantid/geometry/src/Exports/DetectorGroup.cpp
index b28a17d987d..7b403fd9e32 100644
--- a/Code/Mantid/Framework/PythonInterface/mantid/geometry/src/Exports/DetectorGroup.cpp
+++ b/Code/Mantid/Framework/PythonInterface/mantid/geometry/src/Exports/DetectorGroup.cpp
@@ -8,7 +8,7 @@ using namespace boost::python;
 void export_DetectorGroup()
 {
   class_<DetectorGroup, bases<IDetector>, boost::noncopyable>("DetectorGroup", no_init)
-    .def("getDetectorIds", &DetectorGroup::getDetectorIDs, "Returns the list of detector IDs within this group")
+    .def("getDetectorIDs", &DetectorGroup::getDetectorIDs, "Returns the list of detector IDs within this group")
     ;
 }
 
-- 
GitLab