largefiles: fix profile of unused largefilesdirstate._ignore
authorMads Kiilerich <madski@unity3d.com>
Thu, 03 Oct 2013 18:01:21 +0200
changeset 21085 66c6da0bc7e2
parent 21084 70252bdfd39c
child 21086 718f56c47414
largefiles: fix profile of unused largefilesdirstate._ignore
hgext/largefiles/lfutil.py
--- a/hgext/largefiles/lfutil.py	Tue Apr 08 00:48:36 2014 +0200
+++ b/hgext/largefiles/lfutil.py	Thu Oct 03 18:01:21 2013 +0200
@@ -106,7 +106,7 @@
         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):