mercurial/localrepo.py
changeset 2042 a514c7509fa9
parent 2038 5c4496ed152d
child 2065 2ff37e3bf780
child 2072 74d3f5336b66
--- a/mercurial/localrepo.py	Mon Apr 03 14:56:00 2006 +0200
+++ b/mercurial/localrepo.py	Mon Apr 03 10:02:09 2006 -0700
@@ -498,7 +498,7 @@
                     self.ui.warn(_('%s: No such file in rev %s\n') % (
                         util.pathto(self.getcwd(), fn), short(node)))
         else:
-            for src, fn in self.dirstate.walk(files, match):
+            for src, fn in self.dirstate.walk(files, match, badmatch=badmatch):
                 yield src, fn
 
     def changes(self, node1=None, node2=None, files=[], match=util.always,