hgext/convert/bzr.py
changeset 47632 3b2d080f11b5
parent 47377 26127236b229
child 48875 6000f5b25c9b
--- a/hgext/convert/bzr.py	Sat Jul 10 14:07:02 2021 +0200
+++ b/hgext/convert/bzr.py	Sat Jul 10 14:07:14 2021 +0200
@@ -17,6 +17,7 @@
     demandimport,
     error,
     pycompat,
+    util,
 )
 from . import common
 
@@ -65,7 +66,7 @@
         except NameError:
             raise common.NoRepo(_(b'Bazaar modules could not be loaded'))
 
-        path = os.path.abspath(path)
+        path = util.abspath(path)
         self._checkrepotype(path)
         try:
             bzr_dir = bzrdir.BzrDir.open(path.decode())