Mercurial > hg
changeset 9604:fcc85abc762e
commands: fix missing empty synopses
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 19 Oct 2009 00:21:06 -0500 |
parents | 220d39af2e57 |
children | 3194227a4158 |
files | mercurial/commands.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Sun Oct 18 22:31:05 2009 -0500 +++ b/mercurial/commands.py Mon Oct 19 00:21:06 2009 -0500 @@ -3328,7 +3328,7 @@ ] + walkopts + dryrunopts, _('[OPTION]... [SOURCE]... DEST')), "debugancestor": (debugancestor, [], _('[INDEX] REV1 REV2')), - "debugcheckstate": (debugcheckstate, []), + "debugcheckstate": (debugcheckstate, [], ''), "debugcommands": (debugcommands, [], _('[COMMAND]')), "debugcomplete": (debugcomplete, @@ -3342,7 +3342,7 @@ "debugfsinfo": (debugfsinfo, [], _('[PATH]')), "debugindex": (debugindex, [], _('FILE')), "debugindexdot": (debugindexdot, [], _('FILE')), - "debuginstall": (debuginstall, []), + "debuginstall": (debuginstall, [], ''), "debugrebuildstate": (debugrebuildstate, [('r', 'rev', '', _('revision to rebuild to'))], @@ -3569,7 +3569,7 @@ [('u', 'untrusted', None, _('show untrusted configuration options'))], _('[-u] [NAME]...')), "^summary|sum": - (summary, []), + (summary, [], ''), "^status|st": (status, [('A', 'all', None, _('show status of all files')), @@ -3597,7 +3597,7 @@ ('m', 'message', '', _('use <text> as commit message')), ] + commitopts2, _('[-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')), - "tags": (tags, []), + "tags": (tags, [], ''), "tip": (tip, [('p', 'patch', None, _('show patch')),