# HG changeset patch # User Mads Kiilerich # Date 1380816081 -7200 # Node ID 66c6da0bc7e2f42ed0f407b06b79089813de46a0 # Parent 70252bdfd39cc839a11982c5a5750e2d22eb62ed largefiles: fix profile of unused largefilesdirstate._ignore diff -r 70252bdfd39c -r 66c6da0bc7e2 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):