hgext/largefiles/overrides.py
changeset 17107 dcac72c9efb2
parent 17106 4d0e81dca75f
child 17108 1894dac619de
equal deleted inserted replaced
17106:4d0e81dca75f 17107:dcac72c9efb2
   816     ctx = repo._repo[rev]
   816     ctx = repo._repo[rev]
   817 
   817 
   818     lfcommands.cachelfiles(ui, repo._repo, ctx.node())
   818     lfcommands.cachelfiles(ui, repo._repo, ctx.node())
   819 
   819 
   820     def write(name, mode, islink, getdata):
   820     def write(name, mode, islink, getdata):
   821         if lfutil.isstandin(name):
       
   822             return
       
   823         data = getdata()
   821         data = getdata()
   824 
   822 
   825         archiver.addfile(prefix + repo._path + '/' + name, mode, islink, data)
   823         archiver.addfile(prefix + repo._path + '/' + name, mode, islink, data)
   826 
   824 
   827     for f in ctx:
   825     for f in ctx: