[PATCH 02 of 12 misc largefiles] largefiles: fix profile of unused largefilesdirstate._ignore

Mads Kiilerich mads at kiilerich.com
Sun Apr 13 11:59:05 CDT 2014


# HG changeset patch
# User Mads Kiilerich <madski at unity3d.com>
# Date 1380816081 -7200
#      Thu Oct 03 18:01:21 2013 +0200
# Node ID 5c878bec9e6586e029269870353b56bf5ebab5b7
# Parent  1e6fdce9da05ca45877770f6a487962026ae9baa
largefiles: fix profile of unused largefilesdirstate._ignore

diff --git a/hgext/largefiles/lfutil.py b/hgext/largefiles/lfutil.py
--- a/hgext/largefiles/lfutil.py
+++ b/hgext/largefiles/lfutil.py
@@ -105,7 +105,7 @@ class largefilesdirstate(dirstate.dirsta
         return super(largefilesdirstate, self).forget(unixpath(f))
     def normallookup(self, f):
         return super(largefilesdirstate, self).normallookup(unixpath(f))
-    def _ignore(self):
+    def _ignore(self, f):
         return False
 
 def openlfdirstate(ui, repo, create=True):


More information about the Mercurial-devel mailing list