From 0bd7db4a9a9df515ab748be286ccffa4bef35e28 Mon Sep 17 00:00:00 2001 From: Blake Ridgway Date: Tue, 1 Apr 2025 10:26:11 -0500 Subject: [PATCH] more overhaul work --- .gitignore | 1 + time_logix.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 80fadcd..0dad42b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ venv *.csv *.pdf +projects.txt diff --git a/time_logix.py b/time_logix.py index 0d227cb..0db7a09 100644 --- a/time_logix.py +++ b/time_logix.py @@ -281,7 +281,7 @@ class TimeLogix: def export_to_csv(self): try: - with open("time_entries.csv", "w", newline="") as csvfile: + with open("working_sessions.csv", "w", newline="") as csvfile: fieldnames = ["task", "project", "start_time", "end_time", "duration"] writer = csv.DictWriter(csvfile, fieldnames=fieldnames) writer.writeheader()