mercurial/localrepo.py
changeset 6583 3951e04ea989
parent 6578 f242d3684f83
child 6585 d3d1d39da2fa
--- 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