Add note about what first line should be for timelog parser script
This commit is contained in:
parent
d4edd49862
commit
1d07fe08b9
1 changed files with 1 additions and 0 deletions
|
@ -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])
|
||||
|
||||
|
|
Loading…
Reference in a new issue