From 03f1f26b4e4fd167e67b6b06cac757aa5e7962ce Mon Sep 17 00:00:00 2001
From: Wenduo Zhou <zhouw@ornl.gov>
Date: Wed, 10 Jul 2013 16:10:01 -0400
Subject: [PATCH] Fixed an error.  Refs #7336.

---
 .../PythonInterface/plugins/algorithms/SNSPowderReduction.py   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Code/Mantid/Framework/PythonInterface/plugins/algorithms/SNSPowderReduction.py b/Code/Mantid/Framework/PythonInterface/plugins/algorithms/SNSPowderReduction.py
index f8ce896233e..89e391b2da0 100644
--- a/Code/Mantid/Framework/PythonInterface/plugins/algorithms/SNSPowderReduction.py
+++ b/Code/Mantid/Framework/PythonInterface/plugins/algorithms/SNSPowderReduction.py
@@ -548,8 +548,7 @@ class SNSPowderReduction(PythonAlgorithm):
 
             for iws in xrange(samRun.getNumberHistograms()):
                 spec1 = samRun.getSpectrum(iws)
-                spec2 = vanRun.getSpectrum(iws)
-                self.log().information("[DBx157] ws %d: sample spectrum ID = %d; vanadium spectrum ID = %d" % ( iws, spec1.getSpectrumNo(), spec2.getSpectrumNo() ))
+                self.log().information("[DBx157] ws %d: sample spectrum ID = %d;" % ( iws, spec1.getSpectrumNo()))
 
             if HAVE_MPI:
                 if rank > 0:
-- 
GitLab