inotify: expose the same dirstate.status() interface as dirstate.

The real dirstate.status() does not have any keyword args.  For
consistency, wrappers or subclasses should not have them either.
This commit is contained in:
Greg Ward 2010-03-07 13:10:23 -05:00
parent 540e13ee5e
commit f43d8c7735

View File

@ -41,7 +41,7 @@ def reposetup(ui, repo):
# to start an inotify server if it won't start.
_inotifyon = True
def status(self, match, subrepos, ignored, clean, unknown=True):
def status(self, match, subrepos, ignored, clean, unknown):
files = match.files()
if '.' in files:
files = []