diff -r 4e240d6ab898 -r 02d7b5cd373b mercurial/commands.py --- a/mercurial/commands.py Mon Jan 26 15:43:13 2015 -0500 +++ b/mercurial/commands.py Tue Feb 10 15:59:12 2015 -0500 @@ -1946,7 +1946,7 @@ ui.write("%s\n" % "\n".join(options)) return - cmdlist = cmdutil.findpossible(cmd, table) + cmdlist, unused_allcmds = cmdutil.findpossible(cmd, table) if ui.verbose: cmdlist = [' '.join(c[0]) for c in cmdlist.values()] ui.write("%s\n" % "\n".join(sorted(cmdlist)))