From 941b74f3bbc4e1d5342c8ffe8410290f056cc1bf Mon Sep 17 00:00:00 2001
From: Federico Montesino Pouzols <federico.montesino-pouzols@stfc.ac.uk>
Date: Mon, 30 Mar 2015 16:23:26 +0100
Subject: [PATCH] _ prefix not used any longer for FITS headers, re #10231

---
 Code/Mantid/docs/source/algorithms/LoadFITS-v1.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Code/Mantid/docs/source/algorithms/LoadFITS-v1.rst b/Code/Mantid/docs/source/algorithms/LoadFITS-v1.rst
index 1184957082e..dfeae5b13f7 100644
--- a/Code/Mantid/docs/source/algorithms/LoadFITS-v1.rst
+++ b/Code/Mantid/docs/source/algorithms/LoadFITS-v1.rst
@@ -62,15 +62,15 @@ Usage
     ws = wsg.getItem(0)
 
     # A couple of standard FITS header entries
-    bpp_log = '_BITPIX'
+    bpp_log = 'BITPIX'
     try:
         log = ws.getRun().getLogData(bpp_log).value
         print "Bits per pixel: %s" % int(log)
     except RuntimeError:
         print "Could not find the keyword '%s' in this FITS file" % bpp_log
 
-    axis1_log = '_NAXIS1'
-    axis2_log = '_NAXIS2'
+    axis1_log = 'NAXIS1'
+    axis2_log = 'NAXIS2'
     try:
         log1 = ws.getRun().getLogData(axis1_log).value
         log2 = ws.getRun().getLogData(axis2_log).value
-- 
GitLab