# HG changeset patch # User Thomas Arendsen Hein # Date 2008-01-04 13:25:04 # Node ID 7705d308eb5e38d7d91ec2b22e77f17909eff2de # Parent 520a8d9d92ed909d54a496c8b0b03401960bb22f Fix status char in color extension for deleted (missing) files. diff --git a/hgext/color.py b/hgext/color.py --- a/hgext/color.py +++ b/hgext/color.py @@ -123,7 +123,7 @@ def colorstatus(statusfunc, ui, repo, *p _status_abbreviations = { 'M': 'modified', 'A': 'added', 'R': 'removed', - 'D': 'deleted', + '!': 'deleted', '?': 'unknown', 'I': 'ignored', 'C': 'clean',