# HG changeset patch # User Martin Geisler # Date 1257191457 -3600 # Node ID 3bbc6bc628092ef7692ef91afcf2f5364a8e503a # Parent 59e5ae18844096c6ef085563ecfac798815a2a66 commands: slightly better help for --traceback diff -r 59e5ae188440 -r 3bbc6bc62809 mercurial/commands.py --- a/mercurial/commands.py Mon Nov 02 20:50:30 2009 +0100 +++ b/mercurial/commands.py Mon Nov 02 20:50:57 2009 +0100 @@ -3211,7 +3211,7 @@ ('', 'encoding', encoding.encoding, _('set the charset encoding')), ('', 'encodingmode', encoding.encodingmode, _('set the charset encoding mode')), - ('', 'traceback', None, _('print traceback on exception')), + ('', 'traceback', None, _('always print a traceback on exception')), ('', 'time', None, _('time how long the command takes')), ('', 'profile', None, _('print command execution profile')), ('', 'version', None, _('output version information and exit')), diff -r 59e5ae188440 -r 3bbc6bc62809 tests/test-extension.out --- a/tests/test-extension.out Mon Nov 02 20:50:30 2009 +0100 +++ b/tests/test-extension.out Mon Nov 02 20:50:57 2009 +0100 @@ -65,7 +65,7 @@ --debugger start debugger --encoding set the charset encoding (default: ascii) --encodingmode set the charset encoding mode (default: strict) - --traceback print traceback on exception + --traceback always print a traceback on exception --time time how long the command takes --profile print command execution profile --version output version information and exit @@ -95,7 +95,7 @@ --debugger start debugger --encoding set the charset encoding (default: ascii) --encodingmode set the charset encoding mode (default: strict) - --traceback print traceback on exception + --traceback always print a traceback on exception --time time how long the command takes --profile print command execution profile --version output version information and exit