diff --git a/Framework/PythonInterface/plugins/algorithms/LoadEXED.py b/Framework/PythonInterface/plugins/algorithms/LoadEXED.py index 03f0eace38b6a5e450eaf84dca311886fd560eed..bb5d1a871fafcab40631f1230e6c18e809f93926 100644 --- a/Framework/PythonInterface/plugins/algorithms/LoadEXED.py +++ b/Framework/PythonInterface/plugins/algorithms/LoadEXED.py @@ -7,7 +7,6 @@ from mantid.simpleapi import RotateInstrumentComponent import struct import numpy as np import copy -import types class LoadEXED(PythonAlgorithm): @@ -85,9 +84,7 @@ class LoadEXED(PythonAlgorithm): for i in range(nrows): ws.getSpectrum(i).setDetectorID(det_udet[i]) #Sample_logs the header values are written into the sample logs - log_names=[sl.encode('ascii','ignore') for sl in parms_dict.keys()] - log_values=[sl.encode('ascii','ignore') if isinstance(sl,types.UnicodeType) else str(sl) for sl in parms_dict.values()] - AddSampleLogMultiple(Workspace=wsn, LogNames=log_names,LogValues=log_values) + AddSampleLogMultiple(Workspace=wsn, LogNames=list(parms_dict.keys()), LogValues=list(parms_dict.values())) SetGoniometer(Workspace=wsn, Goniometers='Universal') if (self.fxml == ""): LoadInstrument(Workspace=wsn, InstrumentName = "Exed", RewriteSpectraMap= True)