##// END OF EJS Templates
vfs: use 'vfs' module directly in 'mercurial.archival'...
Pierre-Yves David -
r31235:7feab0e7 default
parent child Browse files
Show More
@@ -22,8 +22,8 b' from . import ('
22 22 encoding,
23 23 error,
24 24 match as matchmod,
25 scmutil,
26 25 util,
26 vfs as vfsmod,
27 27 )
28 28 stringio = util.stringio
29 29
@@ -249,7 +249,7 b' class fileit(object):'
249 249
250 250 def __init__(self, name, mtime):
251 251 self.basedir = name
252 self.opener = scmutil.vfs(self.basedir)
252 self.opener = vfsmod.vfs(self.basedir)
253 253
254 254 def addfile(self, name, mode, islink, data):
255 255 if islink:
General Comments 0
You need to be logged in to leave comments. Login now