##// END OF EJS Templates
vfs: use 'vfs' module directly in 'hgext.convert'...
Pierre-Yves David -
r31246:b023caa6 default
parent child Browse files
Show More
@@ -13,8 +13,8 b' from mercurial import ('
13 13 encoding,
14 14 error,
15 15 pycompat,
16 scmutil,
17 16 util,
17 vfs as vfsmod,
18 18 )
19 19
20 20 from . import common
@@ -1146,8 +1146,8 b' class svn_sink(converter_sink, commandli'
1146 1146 self.run0('checkout', path, wcpath)
1147 1147
1148 1148 self.wc = wcpath
1149 self.opener = scmutil.vfs(self.wc)
1150 self.wopener = scmutil.vfs(self.wc)
1149 self.opener = vfsmod.vfs(self.wc)
1150 self.wopener = vfsmod.vfs(self.wc)
1151 1151 self.childmap = mapfile(ui, self.join('hg-childmap'))
1152 1152 if util.checkexec(self.wc):
1153 1153 self.is_exec = util.isexec
General Comments 0
You need to be logged in to leave comments. Login now