Mercurial > public > mercurial-scm > hg
diff mercurial/localrepo.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 | 45f626a39def |
children | ca8d05e1f1d1 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Sun May 31 17:54:18 2009 -0500 +++ b/mercurial/localrepo.py Sun May 31 17:54:18 2009 -0500 @@ -948,7 +948,6 @@ def bad(f, msg): if f not in ctx1: self.ui.warn('%s: %s\n' % (self.dirstate.pathto(f), msg)) - return False match.bad = bad if working: # we need to scan the working dir