Comments
Patch
@@ -4387,7 +4387,7 @@
"""
if opts.get('graph'):
cmdutil.checkunsupportedgraphflags([], opts)
- o = hg._outgoing(ui, repo, dest, opts)
+ o, other = hg._outgoing(ui, repo, dest, opts)
if not o:
return
@@ -585,7 +585,7 @@
o = outgoing.missing
if not o:
scmutil.nochangesfound(repo.ui, repo, outgoing.excluded)
- return o
+ return o, other
def outgoing(ui, repo, dest, opts):
def recurse():
@@ -598,7 +598,7 @@
return ret
limit = cmdutil.loglimit(opts)
- o = _outgoing(ui, repo, dest, opts)
+ o, other = _outgoing(ui, repo, dest, opts)
if not o:
return recurse()