From e964ecf619b9fb989653e6b7a82ccaf5a8d92327 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 5 Nov 2022 15:24:40 -0700 Subject: [PATCH] Update jrnl/DayOneJournal.py --- jrnl/DayOneJournal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/DayOneJournal.py b/jrnl/DayOneJournal.py index 4e827ced..4806bdbf 100644 --- a/jrnl/DayOneJournal.py +++ b/jrnl/DayOneJournal.py @@ -210,7 +210,7 @@ class DayOne(Journal.Journal): entries_from_editor = self._parse(edited) for entry in entries_from_editor: - self._get_and_remove_uuid_from_entry(entry) + entry = self._get_and_remove_uuid_from_entry(entry) # Remove deleted entries edited_uuids = [e.uuid for e in entries_from_editor]