ソースを参照

Merge f4593f15e9 into bc80ab6a3c

pull/12/merge
Emmanuel 9年前
コミット
5aa7c78050
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      gitup/config.py

+ 2
- 1
gitup/config.py ファイルの表示

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


読み込み中…
キャンセル
保存