diff --git a/Framework/PythonInterface/plugins/algorithms/ExportGeometry.py b/Framework/PythonInterface/plugins/algorithms/ExportGeometry.py index aca44bbbd2136b978354554146d6e686dff117ec..5ccb96a507b608b867c2fbe7ebd5ece632d6cd82 100644 --- a/Framework/PythonInterface/plugins/algorithms/ExportGeometry.py +++ b/Framework/PythonInterface/plugins/algorithms/ExportGeometry.py @@ -53,7 +53,7 @@ class ExportGeometry(PythonAlgorithm): return "ExportGeometry" def summary(self): - return "Extract geometry into a variety of file formats" + return "Extract components from larger in-memory instrument, save as IDF style xml" def PyInit(self): self.declareProperty(WorkspaceProperty("InputWorkspace", "", @@ -67,7 +67,7 @@ class ExportGeometry(PythonAlgorithm): doc="Euler angles convention used when writing angles.") self.declareProperty(StringArrayProperty("Components", direction=Direction.Input), - doc="Comma separated list of instrument components to export") + doc="Comma separated list of instrument component names to export") self.declareProperty(FileProperty(name="Filename", defaultValue="", action=FileAction.Save,