From c97e782904f09f432f3c7f60ed627d95786233ce Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 5 Oct 2019 16:27:18 -0700 Subject: [PATCH] remove faulty conditional --- jrnl/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/install.py b/jrnl/install.py index 77247508..5a80562f 100644 --- a/jrnl/install.py +++ b/jrnl/install.py @@ -65,7 +65,7 @@ def upgrade_config(config): This essentially automatically ports jrnl installations if new config parameters are introduced in later versions.""" missing_keys = set(default_config).difference(config) - if missing_keys or config['version'] != __version__: + if missing_keys: for key in missing_keys: config[key] = default_config[key] save_config(config)