Parcourir la source

use default XDG_CONFIG_HOME if it exists

Signed-off-by: Emmanuel Perrier <ealprr@gmail.com>
pull/12/head
Emmanuel Perrier il y a 9 ans
Parent
révision
f4593f15e9
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. +2
    -1
      gitup/config.py

+ 2
- 1
gitup/config.py Voir le fichier

@@ -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


Chargement…
Annuler
Enregistrer