diff --git a/VectoCore/OutputData/FileIO/FileOutputWriter.cs b/VectoCore/OutputData/FileIO/FileOutputWriter.cs
index 6b59948e16fbd87845dd7e52db2e0733ce29b607..0cfc26b53555f62980ec27d88c64dbabdaec60a8 100644
--- a/VectoCore/OutputData/FileIO/FileOutputWriter.cs
+++ b/VectoCore/OutputData/FileIO/FileOutputWriter.cs
@@ -49,7 +49,7 @@ namespace TUGraz.VectoCore.OutputData.FileIO
 		/// <summary>
 		/// 
 		/// </summary>
-		/// <param name="jobFile">full path of the json job-file. jobName and basePath are extracted</param>
+		/// <param name="jobFile">full path of the json job-file. jobName and basePath are extracted.</param>
 		public FileOutputWriter(string jobFile)
 		{
 			_jobFile = jobFile;
@@ -57,7 +57,7 @@ namespace TUGraz.VectoCore.OutputData.FileIO
 
 		public void WriteSumData(DataTable data)
 		{
-			VectoCSVFile.Write(_jobFile, data);
+			VectoCSVFile.Write(SumFileName, data);
 		}
 		
 		public string GetModDataFileName(string runName, string cycleName, string runSuffix)