# HG changeset patch # User Stephen Darnell # Date 2006-09-28 20:00:01 # Node ID 367a009c2acb29b8f110a1f658418d9336063280 # Parent 096f1c73cdc333779ec21e32482a5323da6d446f Remove single character equivalent of --nodates (was -D) diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -2852,7 +2852,7 @@ table = { ('p', 'show-function', None, _('show which function each change is in')), ('g', 'git', None, _('use git extended diff format')), - ('D', 'nodates', None, _("don't include dates in diff headers")), + ('', 'nodates', None, _("don't include dates in diff headers")), ('w', 'ignore-all-space', None, _('ignore white space when comparing lines')), ('b', 'ignore-space-change', None, @@ -2866,7 +2866,7 @@ table = { [('o', 'output', '', _('print output to file with formatted name')), ('a', 'text', None, _('treat all files as text')), ('g', 'git', None, _('use git extended diff format')), - ('D', 'nodates', None, _("don't include dates in diff headers")), + ('', 'nodates', None, _("don't include dates in diff headers")), ('', 'switch-parent', None, _('diff against the second parent'))], _('hg export [-a] [-o OUTFILESPEC] REV...')), "debugforget|forget": diff --git a/tests/test-help.out b/tests/test-help.out --- a/tests/test-help.out +++ b/tests/test-help.out @@ -179,7 +179,7 @@ options: -a --text treat all files as text -p --show-function show which function each change is in -g --git use git extended diff format - -D --nodates don't include dates in diff headers + --nodates don't include dates in diff headers -w --ignore-all-space ignore white space when comparing lines -b --ignore-space-change ignore changes in the amount of white space -B --ignore-blank-lines ignore changes whose lines are all blank