Fix status char in color extension for deleted (missing) files.
authorThomas Arendsen Hein <thomas@intevation.de>
Fri, 04 Jan 2008 14:25:04 +0100
changeset 5796 7705d308eb5e
parent 5795 520a8d9d92ed
child 5797 7b7f03c7dfa5
Fix status char in color extension for deleted (missing) files.
hgext/color.py
--- a/hgext/color.py	Fri Jan 04 07:44:07 2008 +0100
+++ b/hgext/color.py	Fri Jan 04 14:25:04 2008 +0100
@@ -123,7 +123,7 @@
 _status_abbreviations = { 'M': 'modified',
                           'A': 'added',
                           'R': 'removed',
-                          'D': 'deleted',
+                          '!': 'deleted',
                           '?': 'unknown',
                           'I': 'ignored',
                           'C': 'clean',