From f4872b51cf2886eca54ec976b1d36a8928b89b8c Mon Sep 17 00:00:00 2001
From: Christian Krause <christian.krause@idiv.de>
Date: Mon, 26 Jun 2017 09:46:54 +0200
Subject: [PATCH] csv has new column time zone so duration moves one up

---
 ttanalysis.sc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ttanalysis.sc b/ttanalysis.sc
index f0c377c..94c029f 100755
--- a/ttanalysis.sc
+++ b/ttanalysis.sc
@@ -73,7 +73,7 @@ class Credit(path: Path) {
 
       start    = LocalDateTime.parse(entry(4), formatter)
       end      = LocalDateTime.parse(entry(5), formatter)
-      duration = entry(7).toDouble
+      duration = entry(8).toDouble
     } yield TTEntry(start, end, duration)
 
     reader.close()
-- 
GitLab