Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 2834:35af2e56f15a
manifestflags: eliminate remaining users of direct dict access
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 19 Jul 2006 19:11:50 -0500 |
parents | e196aa1df169 |
children | e78cad1f6b1f |
line wrap: on
line diff
--- a/mercurial/localrepo.py Sun Jul 16 03:22:05 2006 -0500 +++ b/mercurial/localrepo.py Wed Jul 19 19:11:50 2006 -0500 @@ -1792,7 +1792,7 @@ # we need to reset the dirstate if the file was added get[f] = m2[f] - if not s and mfw[f] != mf2[f]: + if not s and mfw.execf(f) != mf2.execf(f): if force: self.ui.debug(_(" updating permissions for %s\n") % f) util.set_exec(self.wjoin(f), mf2.execf(f))