Submitter | phabricator |
---|---|
Date | July 10, 2021, 5:46 p.m. |
Message ID | <differential-rev-PHID-DREV-pu6xufuapvp3o5i5xuho-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/49383/ |
State | Superseded |
Headers | show |
Comments
Patch
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"