largefiles: remove a standin check that could never be true
authorMatt Harbison <matt_harbison@yahoo.com>
Mon, 18 Jun 2012 22:45:21 -0400
changeset 17107 dcac72c9efb2
parent 17106 4d0e81dca75f
child 17108 1894dac619de
largefiles: remove a standin check that could never be true
hgext/largefiles/overrides.py
--- a/hgext/largefiles/overrides.py	Mon Jun 18 23:02:51 2012 -0400
+++ b/hgext/largefiles/overrides.py	Mon Jun 18 22:45:21 2012 -0400
@@ -818,8 +818,6 @@
     lfcommands.cachelfiles(ui, repo._repo, ctx.node())
 
     def write(name, mode, islink, getdata):
-        if lfutil.isstandin(name):
-            return
         data = getdata()
 
         archiver.addfile(prefix + repo._path + '/' + name, mode, islink, data)