From 81f19161931a3eb1a86418e4c7cf3a141eb12868 Mon Sep 17 00:00:00 2001 From: Stefan Weijers Date: Sun, 25 Jul 2021 19:41:32 +0200 Subject: [PATCH] small fix --- time.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/time.py b/time.py index a57a741..4127533 100644 --- a/time.py +++ b/time.py @@ -16,7 +16,7 @@ def parseDays(inp): hours = tmpmin[0].strip() minutes = tmpmin[1].strip() tmpday = tmp2[0].split(' ') - days = tmpday[2].strip() + days = tmpday[3].strip() return (days,hours,minutes) def parseNoDays(inp):