D11070: windows: use abspath in convert.git
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Jul 10 17:46:22 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
We replace `os.path.abspath` with `util.abspath`. This should solve more "drive
capitalization" issue on Windows.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11070
AFFECTED FILES
hgext/convert/git.py
CHANGE DETAILS
diff --git a/hgext/convert/git.py b/hgext/convert/git.py
--- a/hgext/convert/git.py
+++ b/hgext/convert/git.py
@@ -14,6 +14,7 @@
config,
error,
pycompat,
+ util,
)
from . import common
@@ -74,7 +75,7 @@
# Pass an absolute path to git to prevent from ever being interpreted
# as a URL
- path = os.path.abspath(path)
+ path = util.abspath(path)
if os.path.isdir(path + b"/.git"):
path += b"/.git"
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list