diff hgext/largefiles/lfutil.py @ 21085:66c6da0bc7e2

largefiles: fix profile of unused largefilesdirstate._ignore
author Mads Kiilerich <madski@unity3d.com>
date Thu, 03 Oct 2013 18:01:21 +0200
parents 32b3331f18eb
children ac3b3a2d976d
line wrap: on
line diff
--- 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):