diff --git a/pomodoroprompt.py b/pomodoroprompt.py index d32137b..2f8d9b2 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -80,6 +80,7 @@ def record_task(whatdid, start, end=None): if end is None: end = datetime.now(pytz.utc) with open('timelog.csv', 'a', newline='') as csvfile: + # TODO make first line started, recorded, description timewriter = csv.writer(csvfile) timewriter.writerow([start, end, whatdid])