mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-06-29 22:16:13 +02:00
Updated readme and changelog and changed config path according to discussion
This commit is contained in:
parent
62a48d7b02
commit
8865816d60
3 changed files with 4 additions and 2 deletions
|
@ -31,7 +31,8 @@ __version__ = '1.0.0-rc1'
|
|||
__author__ = 'Manuel Ebert, Stephan Gabler'
|
||||
__license__ = 'MIT'
|
||||
|
||||
CONFIG_PATH = os.environ.get('JRNL_CONFIG', os.path.expanduser('~/.jrnl_config'))
|
||||
xdg_config = os.environ.get('XDG_CONFIG_HOME')
|
||||
CONFIG_PATH = os.path.join(xdg_config, "jrnl") if xdg_config else os.path.expanduser('~/.jrnl_config'))
|
||||
PYCRYPTO = install.module_exists("Crypto")
|
||||
|
||||
def parse_args():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue