# HG changeset patch # User Matt Mackall # Date 1255929666 18000 # Node ID fcc85abc762e3f431116036108ff9390e8a93087 # Parent 220d39af2e5779879dd9a7bf3af41d787b7ef9b6 commands: fix missing empty synopses diff -r 220d39af2e57 -r fcc85abc762e mercurial/commands.py --- 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 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')),