Submitter | phabricator |
---|---|
Date | April 3, 2018, 11:24 p.m. |
Message ID | <9dda456c5f044a7da67759c0fd96096a@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/30223/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -1224,8 +1224,8 @@ if dest: raise error.Abort(_("--base is incompatible with specifying " "a destination")) - common = [repo.lookup(rev) for rev in base] - heads = [repo.lookup(r) for r in revs] if revs else None + common = [repo[rev].node() for rev in base] + heads = [repo[r].node() for r in revs] if revs else None outgoing = discovery.outgoing(repo, common, heads) else: dest = ui.expandpath(dest or 'default-push', dest or 'default')