Browse Source

fix duplicates in case agnostic systems (osx and linux are unnafected)

tags/v0.4
botmtl 7 years ago
parent
commit
fcb36d4b62
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      gitup/config.py

+ 2
- 2
gitup/config.py View File

@@ -59,7 +59,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:
@@ -83,7 +83,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)


Loading…
Cancel
Save