소스 검색

Merge pull request #31 from botmtl/develop

Fix duplicate detection in case agnostic systems
tags/v0.4
Ben Kurtovic 8 년 전
committed by GitHub
부모
커밋
2e1099edbf
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      gitup/config.py

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

@@ -62,7 +62,7 @@ def add_bookmarks(paths, config_path=None):
config = _load_config_file(config_path)
added, exists = [], []
for path in paths:
path = os.path.abspath(path)
path = os.path.normcase(os.path.abspath(path))
if path in config:
exists.append(path)
else:
@@ -86,7 +86,7 @@ def delete_bookmarks(paths, config_path=None):
deleted, notmarked = [], []
if config:
for path in paths:
path = os.path.abspath(path)
path = os.path.normcase(os.path.abspath(path))
if path in config:
config.remove(path)
deleted.append(path)


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