diff --git a/pomodoro_to_harvest.py b/pomodoro_to_harvest.py index e8d2192..436c302 100644 --- a/pomodoro_to_harvest.py +++ b/pomodoro_to_harvest.py @@ -77,7 +77,7 @@ timelog["time"] = 30 # A pomodoro started before 3am Eastern time is considered to be a continuation # of the day before, so we are, effectively, on West Coast time for determining # the day we want to associate a time entry with. PomodoroPrompt saves as UTC. -timelog["date"] = timelog["started"].dt.tz_convert("US/Pacific").dt.date +timelog["date"] = timelog["started"].dt.tz_convert("America/Los_Angeles").dt.date timelog['date'] = pd.to_datetime(timelog['date']) timelog["day_of_week"] = pd.to_datetime(timelog["date"]).dt.day_name()