Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 5764:8a5d8fb59ed2
Backed out changeset c2a21fe60994
Unfortunately, this breaks backward compatibility.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 31 Dec 2007 17:47:02 -0600 |
parents | c2a21fe60994 |
children | 2dd202a6e15b |
line wrap: on
line diff
--- a/mercurial/commands.py Sun Dec 30 17:45:26 2007 +0100 +++ b/mercurial/commands.py Mon Dec 31 17:47:02 2007 -0600 @@ -2363,7 +2363,7 @@ M = modified A = added R = removed - = = clean + C = clean ! = deleted, but still tracked ? = not tracked I = ignored (not shown by default) @@ -2388,7 +2388,7 @@ ('unknown', '?', unknown), ('ignored', 'I', ignored)) - explicit_changetypes = changetypes + (('clean', '=', clean),) + explicit_changetypes = changetypes + (('clean', 'C', clean),) end = opts['print0'] and '\0' or '\n'