# HG changeset patch # User Vadim Gelfer # Date 1149869357 25200 # Node ID 04736f38d74fa41a1f10a9228dd1bce245cb123c # Parent dec79ed61ee19fb7fdc20411a61f43b15ebbd30a make description of -n option better. diff -r dec79ed61ee1 -r 04736f38d74f mercurial/commands.py --- a/mercurial/commands.py Fri Jun 09 09:06:40 2006 -0700 +++ b/mercurial/commands.py Fri Jun 09 09:09:17 2006 -0700 @@ -2808,13 +2808,13 @@ (add, [('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg add [OPTION]... [FILE]...')), "debugaddremove|addremove": (addremove, [('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg addremove [OPTION]... [FILE]...')), "^annotate": (annotate, @@ -2887,7 +2887,7 @@ _('forcibly copy over an existing managed file')), ('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg copy [OPTION]... [SOURCE]... DEST')), "debugancestor": (debugancestor, [], _('debugancestor INDEX REV1 REV2')), "debugcomplete": @@ -3070,7 +3070,7 @@ _('forcibly copy over an existing managed file')), ('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg rename [OPTION]... SOURCE... DEST')), "^revert": (revert, @@ -3078,7 +3078,7 @@ ('', 'no-backup', None, _('do not save backup copies of files')), ('I', 'include', [], _('include names matching given patterns')), ('X', 'exclude', [], _('exclude names matching given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg revert [-r REV] [NAME]...')), "rollback": (rollback, [], _('hg rollback')), "root": (root, [], _('hg root')),