Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 2832:e196aa1df169
Start using manifestflags methods
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sun, 16 Jul 2006 03:14:17 -0500 |
parents | 00fc88b0b256 |
children | e78cad1f6b1f |
line wrap: on
line diff
--- a/mercurial/commands.py Sun Jul 16 02:59:20 2006 -0500 +++ b/mercurial/commands.py Sun Jul 16 03:14:17 2006 -0500 @@ -2026,7 +2026,8 @@ files.sort() for f in files: - ui.write("%40s %3s %s\n" % (hex(m[f]), mf[f] and "755" or "644", f)) + ui.write("%40s %3s %s\n" % (hex(m[f]), + mf.execf(f) and "755" or "644", f)) def merge(ui, repo, node=None, **opts): """Merge working directory with another revision