diff --git a/Framework/DataHandling/inc/MantidDataHandling/Load.h b/Framework/DataHandling/inc/MantidDataHandling/Load.h
index f09149d407b52833c5d3a5e157a0fe78424bc64f..3645c6b4066b2589ee5bc75b37dff89b20c4ec9f 100644
--- a/Framework/DataHandling/inc/MantidDataHandling/Load.h
+++ b/Framework/DataHandling/inc/MantidDataHandling/Load.h
@@ -48,10 +48,9 @@ public:
   /// Algorithm's version for identification overriding a virtual method
   int version() const override { return 1; }
   const std::vector<std::string> seeAlso() const override {
-    return {"LoadAndMerge", "LoadPreNexusLive", "LoadBBY",
-            "LoadDetectorsGroupingFile", "LoadFITS", "LoadInstrument",
-            "LoadInstrumentFromNexus", "LoadParameterFile"};
+    return {"LoadNexus", "LoadRaw", "LoadBBY"};
   }
+
   /// Category
   const std::string category() const override { return "DataHandling"; }
   /// Aliases
diff --git a/Framework/PythonInterface/test/python/mantid/api/AlgorithmTest.py b/Framework/PythonInterface/test/python/mantid/api/AlgorithmTest.py
index 17497d1d44662bcf557a5f5e1542f65007eed015..2ac4ea055a8760748e1ae4e2a990bd58bcb86821 100644
--- a/Framework/PythonInterface/test/python/mantid/api/AlgorithmTest.py
+++ b/Framework/PythonInterface/test/python/mantid/api/AlgorithmTest.py
@@ -22,7 +22,7 @@ class AlgorithmTest(unittest.TestCase):
         self.assertEquals(1, len(self._load.categories()))
         self.assertEquals('DataHandling', self._load.categories()[0])
         self.assertEquals('', self._load.helpURL())
-        self.assertEquals([], self._load.seeAlso())
+        self.assertEquals(["LoadNexus", "LoadRaw", "LoadBBY"], self._load.seeAlso())
 
     def test_get_unknown_property_raises_error(self):
         self.assertRaises(RuntimeError, self._load.getProperty, "NotAProperty")