mercurial/commands.py
changeset 5764 8a5d8fb59ed2
parent 5762 c2a21fe60994
child 5775 2dd202a6e15b
--- 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'