소스 검색

specify config file delimiter so it doesn't barf on windows paths

tags/v0.4
Marco 8 년 전
부모
커밋
88cddb1d4a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      gitup/config.py

+ 1
- 1
gitup/config.py 파일 보기

@@ -39,7 +39,7 @@ def _migrate_old_config_path():
def _load_config_file(config_path=None):
"""Read the config file and return a SafeConfigParser() object."""
_migrate_old_config_path()
config = configparser.SafeConfigParser()
config = configparser.SafeConfigParser(delimiters='=')
# Don't lowercase option names, because we are storing paths there:
config.optionxform = lambda opt: opt
config.read(config_path or get_default_config_path())


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