From 46ba622aa1333de14360eba6074e3f3cbcfee325 Mon Sep 17 00:00:00 2001 From: Manuel Ebert Date: Mon, 11 Jun 2012 15:39:45 +0200 Subject: [PATCH] Adds feedback on updating jrnl_conf --- jrnl/jrnl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jrnl/jrnl.py b/jrnl/jrnl.py index 811cd222..40019f3a 100755 --- a/jrnl/jrnl.py +++ b/jrnl/jrnl.py @@ -36,6 +36,7 @@ def update_config(config): config[key] = default_config[key] with open(CONFIG_PATH, 'w') as f: json.dump(config, f, indent=2) + print("[.jrnl_conf updated to newest version]") def parse_args(): parser = argparse.ArgumentParser()