Poetry updates

update version and author emails
update makefile to use poetry for more things
remove faulty conditional
This commit is contained in:
Jonathan Wren 2019-10-05 16:06:16 -07:00
parent 0ea24da225
commit 8c0c95d1f6
3 changed files with 7 additions and 7 deletions

View file

@ -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)