Change default config to use journal key instead of journal name as key for file path (#1594)

This commit is contained in:
Micah Jerome Ellison 2022-10-08 13:41:22 -07:00 committed by GitHub
parent dd7f59cef7
commit ceff398a01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -91,7 +91,7 @@ def get_config_path():
def get_default_config():
return {
"version": __version__,
"journals": {"default": get_default_journal_path()},
"journals": {"default": {"journal": get_default_journal_path()}},
"editor": os.getenv("VISUAL") or os.getenv("EDITOR") or "",
"encrypt": False,
"template": False,