changeset 17107:dcac72c9efb2

largefiles: remove a standin check that could never be true
author Matt Harbison <matt_harbison@yahoo.com>
date Mon, 18 Jun 2012 22:45:21 -0400
parents 4d0e81dca75f
children 1894dac619de
files hgext/largefiles/overrides.py
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)