Skip to content

Commit

Permalink
Merge pull request #51 from mantidproject/bugfix/10427_export_logs
Browse files Browse the repository at this point in the history
Fix VULCAN autoreduction
  • Loading branch information
mdoucet committed Oct 24, 2014
2 parents c80a997 + 04982c3 commit 66caf34
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,10 @@ def _appendExpLog(self, logvaluedict):
logname = self._sampleLogNames[il]
optype = self._sampleLogOperations[il]
key = logname + "-" + optype
value = logvaluedict[key]
if key in logvaluedict.keys():
value = logvaluedict[key]
elif logname in logvaluedict.keys():
value = logvaluedict[logname]
wbuf += "%s%s" % (str(value), self._valuesep)
wbuf = wbuf[0:-1]

Expand Down

0 comments on commit 66caf34

Please sign in to comment.