소스 검색

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


불러오는 중...
취소
저장