From f18250fac969caa6ed89e5a4559d025f1070c2d4 Mon Sep 17 00:00:00 2001 From: mlncn Date: Sun, 2 May 2021 17:51:08 -0400 Subject: [PATCH] Fix typo --- pomodoroprompt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomodoroprompt.py b/pomodoroprompt.py index f3a3e88..39c8b89 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -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)