diff --git a/pomodoroprompt.py b/pomodoroprompt.py index 57cd233..d1d586c 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -53,9 +53,9 @@ def log_step(text, start, end_section=False): timelog_file = Path(timelog_path) timelog_file.touch(exist_ok=True) with timelog_file.open('a') as timelog: - timelog.write(text) + timelog.write(text + '\n') if end_section: - timelog.write('/n/n') + timelog.write('\n\n') def record_task(whatdid, start, end=None):