##// 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 demandimport,
17 demandimport,
18 error,
18 error,
19 pycompat,
19 pycompat,
20 util,
20 )
21 )
21 from . import common
22 from . import common
22
23
@@ -65,7 +66,7 b' class bzr_source(common.converter_source'
65 except NameError:
66 except NameError:
66 raise common.NoRepo(_(b'Bazaar modules could not be loaded'))
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 self._checkrepotype(path)
70 self._checkrepotype(path)
70 try:
71 try:
71 bzr_dir = bzrdir.BzrDir.open(path.decode())
72 bzr_dir = bzrdir.BzrDir.open(path.decode())
General Comments 0
You need to be logged in to leave comments. Login now