changeset 16683 | 525fdb738975 |
parent 16551 | ebf6d38c9063 |
child 16686 | 67964cda8701 |
--- a/mercurial/dirstate.py Fri May 11 18:41:04 2012 +0200 +++ b/mercurial/dirstate.py Sat May 12 15:54:54 2012 +0200 @@ -695,7 +695,8 @@ if not skipstep3 and not exact: visit = sorted([f for f in dmap if f not in results and matchfn(f)]) for nf, st in zip(visit, util.statfiles([join(i) for i in visit])): - if not st is None and not getkind(st.st_mode) in (regkind, lnkkind): + if (not st is None and + not getkind(st.st_mode) in (regkind, lnkkind)): st = None results[nf] = st for s in subrepos: