From 24426c263dfda22475414d6a29c8c09063b04513 Mon Sep 17 00:00:00 2001
From: Elliot Oram <Elliot.Oram@stfc.ac.uk>
Date: Tue, 13 Oct 2015 09:10:18 +0100
Subject: [PATCH] Removed depricated call to python script in interface

Refs #13826
---
 MantidQt/CustomInterfaces/src/Indirect/Quasi.cpp | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/MantidQt/CustomInterfaces/src/Indirect/Quasi.cpp b/MantidQt/CustomInterfaces/src/Indirect/Quasi.cpp
index decb54b22d0..a0000d49334 100644
--- a/MantidQt/CustomInterfaces/src/Indirect/Quasi.cpp
+++ b/MantidQt/CustomInterfaces/src/Indirect/Quasi.cpp
@@ -134,8 +134,6 @@ void Quasi::run() {
   bool useResNorm = false;
   std::string resNormFile("");
 
-  std::string pyInput = "from IndirectBayes import QLRun\n";
-
   std::string sampleName =
       m_uiForm.dsSample->getCurrentDataName().toStdString();
   std::string resName =
@@ -201,15 +199,6 @@ void Quasi::run() {
   runAlg->setProperty("Save", save);
   runAlg->setProperty("Plot", plot);
 
-  /*pyInput += "QLRun('" + program + "','" + sampleName + "','" + resName +
-             "','" + resNormFile + "'," + eRange + ","
-                                                   " " +
-             nBins + "," + fitOps + ",'" + fixedWidthFile + "'," + sequence +
-             ", "
-             " Save=" +
-             save + ", Plot='" + plot + "')\n";
-
-  runPythonScript(pyInput);*/
   m_batchAlgoRunner->addAlgorithm(runAlg);
   connect(m_batchAlgoRunner, SIGNAL(batchComplete(bool)), this,
           SLOT(algorithmComplete(bool)));
-- 
GitLab