diff -r 025ec0f08cb6 -r 1004d3cd65fd mercurial/commands.py --- a/mercurial/commands.py Wed Apr 16 00:37:24 2014 +0900 +++ b/mercurial/commands.py Wed Apr 16 00:37:24 2014 +0900 @@ -4355,6 +4355,7 @@ cmdutil.checkunsupportedgraphflags([], opts) o, other = hg._outgoing(ui, repo, dest, opts) if not o: + cmdutil.outgoinghooks(ui, repo, other, opts, o) return revdag = cmdutil.graphrevs(repo, o, opts) @@ -4362,6 +4363,7 @@ showparents = [ctx.node() for ctx in repo[None].parents()] cmdutil.displaygraph(ui, revdag, displayer, showparents, graphmod.asciiedges) + cmdutil.outgoinghooks(ui, repo, other, opts, o) return 0 if opts.get('bookmarks'):