Submitter | phabricator |
---|---|
Date | Jan. 18, 2018, 1:39 p.m. |
Message ID | <differential-rev-PHID-DREV-jzjaa4d2bqzlz4hguy2l-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/26881/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -1208,7 +1208,7 @@ raise error.Abort(_("--base is incompatible with specifying " "a destination")) common = [repo.lookup(rev) for rev in base] - heads = map(repo.lookup, revs) if revs else None + heads = [repo.lookup(r) 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')