diff -r df5ecb813426 -r 81a1a00f5738 mercurial/commands.py --- a/mercurial/commands.py Fri Mar 02 21:43:55 2012 +0200 +++ b/mercurial/commands.py Fri Feb 24 11:02:21 2012 +0100 @@ -2161,10 +2161,10 @@ """ if ui.verbose: tree = revset.parse(expr)[0] - ui.note(tree, "\n") + ui.note(revset.prettyformat(tree), "\n") newtree = revset.findaliases(ui, tree) if newtree != tree: - ui.note(newtree, "\n") + ui.note(revset.prettyformat(newtree), "\n") func = revset.match(ui, expr) for c in func(repo, range(len(repo))): ui.write("%s\n" % c)