From 4d0640e613761a2007533db2669e03fe583c829a Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison <4383304+micahellison@users.noreply.github.com> Date: Sat, 24 Aug 2019 15:14:15 -0700 Subject: [PATCH] [GH-632] removing unnecessary whitespace --- jrnl/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jrnl/install.py b/jrnl/install.py index 68cfb6ea..9b6965fa 100644 --- a/jrnl/install.py +++ b/jrnl/install.py @@ -86,7 +86,7 @@ def load_or_install_jrnl(): if os.path.exists(config_path): log.debug('Reading configuration from file %s', config_path) config = util.load_config(config_path) - + try: upgrade.upgrade_jrnl_if_necessary(config_path) except upgrade.UpgradeValidationException: @@ -94,7 +94,7 @@ def load_or_install_jrnl(): sys.exit(1) upgrade_config(config) - + return config else: log.debug('Configuration file not found, installing jrnl...')