Submitter | phabricator |
---|---|
Date | April 17, 2018, 2:45 a.m. |
Message ID | <adf68c42d81f561fa510ef1c7d96b8d4@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/31154/ |
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 @@ -4037,7 +4037,9 @@ oldrevs = revs revs = [] # actually, nodes for r in oldrevs: - node = other.lookup(r) + with other.commandexecutor() as e: + node = e.callcommand('lookup', {'key': r}).result() + revs.append(node) if r == checkout: checkout = node