# HG changeset patch # User Greg Ward # Date 1267985423 18000 # Node ID 3077ee5ca7506ec71df9a2a6b2011c49df213cc9 # Parent 9a36d159595f69ebc896110caf299ebc7669ab4c 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. diff -r 9a36d159595f -r 3077ee5ca750 hgext/inotify/__init__.py --- a/hgext/inotify/__init__.py Sun Mar 07 13:03:03 2010 +0100 +++ b/hgext/inotify/__init__.py Sun Mar 07 13:10:23 2010 -0500 @@ -41,7 +41,7 @@ # 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 = []