Fix typo
This commit is contained in:
parent
810712166d
commit
f18250fac9
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ def record_task(whatnext, whatdid, start, end=None):
|
|||
if not os.path.isfile(filepath):
|
||||
with open(filepath, 'w', newline='') as csvfile:
|
||||
log = csv.writer(csvfile)
|
||||
log.writewrow(['started', 'recorded', 'description', 'intention'])
|
||||
log.writerow(['started', 'recorded', 'description', 'intention'])
|
||||
|
||||
with open(filepath, 'a', newline='') as csvfile:
|
||||
timewriter = csv.writer(csvfile)
|
||||
|
|
Loading…
Reference in a new issue