From f6ca8b123e721f9f479287284525e68d6f98d4cd Mon Sep 17 00:00:00 2001 From: Brandon Hewer <brandon.hewer@stfc.ac.uk> Date: Thu, 5 Oct 2017 17:35:27 +0100 Subject: [PATCH] Update PoldiMerge-v1.rst --- docs/source/algorithms/PoldiMerge-v1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/algorithms/PoldiMerge-v1.rst b/docs/source/algorithms/PoldiMerge-v1.rst index af54dddc81d..43efce97d05 100644 --- a/docs/source/algorithms/PoldiMerge-v1.rst +++ b/docs/source/algorithms/PoldiMerge-v1.rst @@ -67,7 +67,7 @@ This small usage example merges two compatible POLDI-files which have been loade total_summed = SumSpectra(spectra_summed) print("6903+6904 contains a total of {} counts.".format(int(total_summed.dataY(0)[0]))) - print("Summing the counts of the single data files leads to {} counts.".format(counts_6903 + counts_6904)) + print("Summing the counts of the single data files leads to {} counts.".format(int(counts_6903 + counts_6904))) Output: -- GitLab