changeset 37313:70c52800940b

outgoing: avoid repo.lookup() for converting revnum to nodeid Differential Revision: https://phab.mercurial-scm.org/D3053
author Martin von Zweigbergk <martinvonz@google.com>
date Sun, 01 Apr 2018 23:27:50 -0700
parents e47bd4c71c5e
children 8474005fcfe2
files mercurial/hg.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/hg.py	Sun Apr 01 23:21:17 2018 -0700
+++ b/mercurial/hg.py	Sun Apr 01 23:27:50 2018 -0700
@@ -957,7 +957,7 @@
     ui.status(_('comparing with %s\n') % util.hidepassword(dest))
     revs, checkout = addbranchrevs(repo, repo, branches, opts.get('rev'))
     if revs:
-        revs = [repo.lookup(rev) for rev in scmutil.revrange(repo, revs)]
+        revs = [repo[rev].node() for rev in scmutil.revrange(repo, revs)]
 
     other = peer(repo, opts, dest)
     outgoing = discovery.findcommonoutgoing(repo, other, revs,