From f43d8c773536d39a0ed9286676ef314573c1f5f9 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sun, 7 Mar 2010 13:10:23 -0500 Subject: [PATCH] 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. --- hgext/inotify/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hgext/inotify/__init__.py b/hgext/inotify/__init__.py index be653ee1fa..78c53cef23 100644 --- a/hgext/inotify/__init__.py +++ b/hgext/inotify/__init__.py @@ -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 = []