From 1cc17a96f9dde0c25db5d2f61ac680fa42f81c4b Mon Sep 17 00:00:00 2001
From: Owen Arnold <owen.arnold@stfc.ac.uk>
Date: Thu, 27 Nov 2014 21:25:41 +0000
Subject: [PATCH] refs #10530. Fix for rhel6. numpy 1.3

---
 .../plugins/algorithms/WorkflowAlgorithms/CutMD.py              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Code/Mantid/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/CutMD.py b/Code/Mantid/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/CutMD.py
index deb86d1b8ca..3136b866714 100644
--- a/Code/Mantid/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/CutMD.py
+++ b/Code/Mantid/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/CutMD.py
@@ -111,7 +111,7 @@ class CutMD(DataProcessorAlgorithm):
            for k in Krange:
                for l in Lrange:
                    original_corner=np.array([h,k,l])
-                   new_coords[counter]=original_corner.dot(Minv)
+                   new_coords[counter]=np.dot(original_corner, Minv)
                    counter += 1
         
         # Get the min max extents
-- 
GitLab