# HG changeset patch # User Pierre-Yves David # Date 2017-05-04 10:48:45 # Node ID b9d97bf96f613dc2dcbfc07c5549151bb0ecb73a # Parent aeb060dd7ac9cf1632614ec679f76e739c7bae58 bundle: factor the 'getchangegroup' out The call in the two branches is identical, so we can just issue it outside of the conditional. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -1357,8 +1357,6 @@ def bundle(ui, repo, fname, dest=None, * common = [repo.lookup(rev) for rev in base] heads = revs and map(repo.lookup, revs) or None outgoing = discovery.outgoing(repo, common, heads) - cg = changegroup.getchangegroup(repo, 'bundle', outgoing, - version=cgversion) else: dest = ui.expandpath(dest or 'default-push', dest or 'default') dest, branches = hg.parseurl(dest, opts.get('branch')) @@ -1369,8 +1367,7 @@ def bundle(ui, repo, fname, dest=None, * onlyheads=heads, force=opts.get('force'), portable=True) - cg = changegroup.getchangegroup(repo, 'bundle', outgoing, - version=cgversion) + cg = changegroup.getchangegroup(repo, 'bundle', outgoing, version=cgversion) if not cg: scmutil.nochangesfound(ui, repo, not base and outgoing.excluded) return 1