diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-02-02 13:36:55 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-02 13:36:55 -0800 |
commit | a482cf446f2ced7fdd67faa2b3a55bfd5caf7d58 (patch) | |
tree | 4df5673a3157e6ecaa610bb4f50371684c86e4a8 /git-p4.py | |
parent | 6f1c08bdb75b37ad30103f0f12339780fdc004e2 (diff) | |
parent | c3c2b057767c037b32a276e14bf563383ce82e39 (diff) | |
download | git-a482cf446f2ced7fdd67faa2b3a55bfd5caf7d58.tar.gz |
Merge branch 'gv/mingw-p4-mapuser'
"git p4" did not work well with multiple git-p4.mapUser entries on
Windows.
* gv/mingw-p4-mapuser:
git-p4: fix git-p4.mapUser on Windows
Diffstat (limited to 'git-p4.py')
-rwxr-xr-x | git-p4.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -674,7 +674,7 @@ def gitConfigInt(key): def gitConfigList(key): if not _gitConfig.has_key(key): s = read_pipe(["git", "config", "--get-all", key], ignore_error=True) - _gitConfig[key] = s.strip().split(os.linesep) + _gitConfig[key] = s.strip().splitlines() if _gitConfig[key] == ['']: _gitConfig[key] = [] return _gitConfig[key] |