changeset 10493:283f3b413f19 stable

regression: missing arg from 24ce8f0c0a39 dirstate.{walk,status} changes
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Wed, 17 Feb 2010 20:30:57 +0100
parents 0e64d814d7d0
children 08064db9f005
files contrib/perf.py hgext/inotify/__init__.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/contrib/perf.py	Wed Feb 17 15:43:21 2010 +0100
+++ b/contrib/perf.py	Wed Feb 17 20:30:57 2010 +0100
@@ -42,7 +42,7 @@
 
 def perfstatus(ui, repo, *pats):
     #m = match.always(repo.root, repo.getcwd())
-    #timer(lambda: sum(map(len, repo.dirstate.status(m, False, False, False))))
+    #timer(lambda: sum(map(len, repo.dirstate.status(m, [], False, False, False))))
     timer(lambda: sum(map(len, repo.status())))
 
 def perfheads(ui, repo):
--- a/hgext/inotify/__init__.py	Wed Feb 17 15:43:21 2010 +0100
+++ b/hgext/inotify/__init__.py	Wed Feb 17 20:30:57 2010 +0100
@@ -58,7 +58,7 @@
                 else:
                     if ui.config('inotify', 'debug'):
                         r2 = super(inotifydirstate, self).status(
-                            match, False, clean, unknown)
+                            match, [], False, clean, unknown)
                         for c, a, b in zip('LMARDUIC', result, r2):
                             for f in a:
                                 if f not in b: