--- a/mercurial/logexchange.py Sun Apr 11 23:54:35 2021 +0200
+++ b/mercurial/logexchange.py Mon Apr 12 03:01:04 2021 +0200
@@ -15,6 +15,9 @@
util,
vfs as vfsmod,
)
+from .utils import (
+ urlutil,
+)
# directory name in .hg/ in which remotenames files will be present
remotenamedir = b'logexchange'
@@ -117,7 +120,7 @@
# represent the remotepath with user defined path name if exists
for path, url in repo.ui.configitems(b'paths'):
# remove auth info from user defined url
- noauthurl = util.removeauth(url)
+ noauthurl = urlutil.removeauth(url)
# Standardize on unix style paths, otherwise some {remotenames} end up
# being an absolute path on Windows.