# HG changeset patch # User Thomas Arendsen Hein # Date 1173181927 -3600 # Node ID 30857b5779f86f62faadb8b29d652e2bf4215eed # Parent 26314500a5e10ada4d892eef040541e310759a56 Fix help text for hg status -i diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -2919,7 +2919,7 @@ table = { ('d', 'deleted', None, _('show only deleted (but tracked) files')), ('c', 'clean', None, _('show only files without changes')), ('u', 'unknown', None, _('show only unknown (not tracked) files')), - ('i', 'ignored', None, _('show ignored files')), + ('i', 'ignored', None, _('show only ignored files')), ('n', 'no-status', None, _('hide status prefix')), ('C', 'copies', None, _('show source of copied files')), ('0', 'print0', None, diff --git a/tests/test-help.out b/tests/test-help.out --- a/tests/test-help.out +++ b/tests/test-help.out @@ -236,7 +236,7 @@ options: -d --deleted show only deleted (but tracked) files -c --clean show only files without changes -u --unknown show only unknown (not tracked) files - -i --ignored show ignored files + -i --ignored show only ignored files -n --no-status hide status prefix -C --copies show source of copied files -0 --print0 end filenames with NUL, for use with xargs