From c927a1de5b06d503a281364adbb45189293dbedf Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Thu, 1 Jun 2023 11:41:07 +0200 Subject: [PATCH] fix --- todo.actions.d/helpers/timetrack_log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo.actions.d/helpers/timetrack_log.py b/todo.actions.d/helpers/timetrack_log.py index a8d7c45..d4cfe5f 100755 --- a/todo.actions.d/helpers/timetrack_log.py +++ b/todo.actions.d/helpers/timetrack_log.py @@ -30,7 +30,7 @@ def read(filename, totimestamp): for line in f: yield line if totimestamp > datetime.now(): - yield datetime.now().strftime("+%Y-%m-%d %a %H:%M") + " now" + yield datetime.now().strftime("%Y-%m-%d %a %H:%M") + " now" output_delta = 0 fromtimestamp = datetime.now().replace(hour=0,minute=9, second=0) -- 2.45.2