diff --git a/Code/Mantid/scripts/Reflectometry/isis_reflectometry/load_live_runs.py b/Code/Mantid/scripts/Reflectometry/isis_reflectometry/load_live_runs.py index 06d7115b870c..3718203db503 100644 --- a/Code/Mantid/scripts/Reflectometry/isis_reflectometry/load_live_runs.py +++ b/Code/Mantid/scripts/Reflectometry/isis_reflectometry/load_live_runs.py @@ -1,7 +1,6 @@ from mantid.simpleapi import * def get_live_data(InstrumentName, Accumulation = "Add", OutputName = "live"): - #StartLiveData(Instrument=str(InstrumentName), Outputworkspace=str(OutputName), AccumulationMethod = Accumulation) - StartLiveData(Instrument="FakeEventDataListener", Outputworkspace=str(OutputName), AccumulationMethod = Accumulation) + StartLiveData(Instrument=str(InstrumentName), Outputworkspace=str(OutputName), AccumulationMethod = Accumulation) ws = mtd[OutputName] return ws def is_live_run(run):