Adds feedback on updating jrnl_conf

This commit is contained in:
Manuel Ebert 2012-06-11 15:39:45 +02:00
parent c88ea3987f
commit 1c5d0a57cc

View file

@ -36,6 +36,7 @@ def update_config(config):
config[key] = default_config[key] config[key] = default_config[key]
with open(CONFIG_PATH, 'w') as f: with open(CONFIG_PATH, 'w') as f:
json.dump(config, f, indent=2) json.dump(config, f, indent=2)
print("[.jrnl_conf updated to newest version]")
def parse_args(): def parse_args():
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()