##// END OF EJS Templates
windows: use abspath in convert.bzr...
marmoute -
r48432:3b2d080f default
parent child Browse files
Show More
@@ -17,6 +17,7 b' from mercurial import ('
17 17 demandimport,
18 18 error,
19 19 pycompat,
20 util,
20 21 )
21 22 from . import common
22 23
@@ -65,7 +66,7 b' class bzr_source(common.converter_source'
65 66 except NameError:
66 67 raise common.NoRepo(_(b'Bazaar modules could not be loaded'))
67 68
68 path = os.path.abspath(path)
69 path = util.abspath(path)
69 70 self._checkrepotype(path)
70 71 try:
71 72 bzr_dir = bzrdir.BzrDir.open(path.decode())
General Comments 0
You need to be logged in to leave comments. Login now