From cc85d905ca0da109e0d81cc2d32cca7538b8159c Mon Sep 17 00:00:00 2001 From: Manuel Ebert Date: Sat, 4 Apr 2015 18:47:09 +1100 Subject: [PATCH] Return config after install Fixes #297 --- jrnl/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/install.py b/jrnl/install.py index dac80700..1ce0f211 100644 --- a/jrnl/install.py +++ b/jrnl/install.py @@ -86,7 +86,7 @@ def load_or_install_jrnl(): return config else: log.debug('Configuration file not found, installing jrnl...') - install() + return install() def install():