##// END OF EJS Templates
Fix status char in color extension for deleted (missing) files.
Thomas Arendsen Hein -
r5796:7705d308 default
parent child Browse files
Show More
@@ -123,7 +123,7 b' def colorstatus(statusfunc, ui, repo, *p'
123 _status_abbreviations = { 'M': 'modified',
123 _status_abbreviations = { 'M': 'modified',
124 'A': 'added',
124 'A': 'added',
125 'R': 'removed',
125 'R': 'removed',
126 'D': 'deleted',
126 '!': 'deleted',
127 '?': 'unknown',
127 '?': 'unknown',
128 'I': 'ignored',
128 'I': 'ignored',
129 'C': 'clean',
129 'C': 'clean',
General Comments 0
You need to be logged in to leave comments. Login now