mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Doc changes
This commit is contained in:
parent
84d886d0ef
commit
0a28a9807b
2 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,12 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
## 2.0
|
||||||
|
|
||||||
|
* Cryptographical backend changed from PyCrypto to cryptography.io
|
||||||
|
* Config now respects XDG conventions and may move accordingly
|
||||||
|
* Config now saved as YAML
|
||||||
|
* Config name changed from `journals.jrnl_name.journal` to `journals.jrnl_name.path`
|
||||||
|
|
||||||
### 1.9 (July 21, 2014)
|
### 1.9 (July 21, 2014)
|
||||||
|
|
||||||
|
|
|
@ -103,7 +103,6 @@ def yesno(prompt, default=True):
|
||||||
|
|
||||||
def load_config(config_path):
|
def load_config(config_path):
|
||||||
"""Tries to load a config file from YAML.
|
"""Tries to load a config file from YAML.
|
||||||
If that fails, fall back to JSON.
|
|
||||||
"""
|
"""
|
||||||
with open(config_path) as f:
|
with open(config_path) as f:
|
||||||
config = yaml.load(f)
|
config = yaml.load(f)
|
||||||
|
|
Loading…
Add table
Reference in a new issue