From 61d0f64a8d1fe5506e775e17ebd74f10b4368590 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Fri, 24 Feb 2023 09:06:10 -0800 Subject: [PATCH] Write journal upon creation instead of just creating 0-length file --- jrnl/journals/Journal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jrnl/journals/Journal.py b/jrnl/journals/Journal.py index 994e0098..4b99565a 100644 --- a/jrnl/journals/Journal.py +++ b/jrnl/journals/Journal.py @@ -123,6 +123,7 @@ class Journal: }, ) ) + self.write() text = self._load(filename) text = self._decrypt(text)