Selaa lähdekoodia

use default XDG_CONFIG_HOME if it exists

Signed-off-by: Emmanuel Perrier <ealprr@gmail.com>
pull/12/head
Emmanuel Perrier 9 vuotta sitten
vanhempi
commit
f4593f15e9
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  1. +2
    -1
      gitup/config.py

+ 2
- 1
gitup/config.py Näytä tiedosto

@@ -13,7 +13,8 @@ from colorama import Fore, Style
__all__ = ["get_bookmarks", "add_bookmarks", "delete_bookmarks",
"list_bookmarks"]

CONFIG_FILENAME = os.path.join(os.path.expanduser("~"), ".gitup")
CONFIG_FILENAME = os.path.join(os.path.expanduser('~/.config'), '.gitup') if \
os.path.exists(os.path.expanduser('~/.config')) else os.path.join(os.path.expanduser('~'), '.gitup')

YELLOW = Fore.YELLOW + Style.BRIGHT
RED = Fore.RED + Style.BRIGHT


Ladataan…
Peruuta
Tallenna