From b5c4ad7a4a2e5aedaf903cba63a9dc201d458b9f Mon Sep 17 00:00:00 2001 From: mzfr Date: Sun, 3 Nov 2019 13:53:44 +0530 Subject: [PATCH] Don't set config to default_config before saving After we create a new journal it should be added to the config file but if we set "config" to "default_config" then new entry will never make it jrnl.yaml file --- jrnl/install.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jrnl/install.py b/jrnl/install.py index 88c6d470..27a62de3 100644 --- a/jrnl/install.py +++ b/jrnl/install.py @@ -157,7 +157,6 @@ def create(journal_name, default_file_path=None, config=None): else: PlainJournal._create(journal_path) - config = default_config save_config(config) if password: config['password'] = password