changeset 42112 | 29c22496dd97 |
parent 42111 | f0fa0fc4900a |
child 42113 | f0def07fa82f |
--- a/mercurial/branchmap.py Wed Mar 27 21:33:04 2019 +0300 +++ b/mercurial/branchmap.py Sun Mar 31 16:20:17 2019 +0300 @@ -290,7 +290,7 @@ return (n for n in nodes if n not in self._closednodes) def branchheads(self, branch, closed=False): - heads = self[branch] + heads = self._entries[branch] if not closed: heads = list(self.iteropen(heads)) return heads