changeset 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 70252bdfd39c
children 718f56c47414
files hgext/largefiles/lfutil.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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):