diff -r 5acbdd3941c4 -r 3951e04ea989 mercurial/localrepo.py --- a/mercurial/localrepo.py Mon May 12 11:37:07 2008 -0500 +++ b/mercurial/localrepo.py Mon May 12 11:37:08 2008 -0500 @@ -941,7 +941,6 @@ is one of: 'f' the file was found in the directory tree 'm' the file was only in the dirstate and not in the tree - 'b' file was not found and matched badmatch ''' if node: @@ -965,7 +964,7 @@ for fn in ffiles: if match.bad(fn, 'No such file in rev ' + short(node)) \ and match(fn): - yield 'b', fn + yield 'f', fn else: for src, fn in self.dirstate.walk(match): yield src, fn