diff mercurial/dirstate.py @ 8680:b6511055d37b

match: ignore return of match.bad All users returned false, return can now be dropped
author Matt Mackall <mpm@selenic.com>
date Sun, 31 May 2009 17:54:18 -0500
parents 34df078b8b1b
children 26f133267cd7
line wrap: on
line diff
--- a/mercurial/dirstate.py	Sun May 31 17:54:18 2009 -0500
+++ b/mercurial/dirstate.py	Sun May 31 17:54:18 2009 -0500
@@ -515,8 +515,7 @@
                             dostep3 = True
                             break
                     else:
-                        if badfn(ff, inst.strerror) and not ignore(nf):
-                            results[nf] = None
+                        badfn(ff, inst.strerror)
 
         # step 2: visit subdirectories
         while work: