Submitter | phabricator |
---|---|
Date | April 16, 2019, 2:54 p.m. |
Message ID | <02f367be119312e9ddf4211d9943699c@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/39637/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/branchmap.py b/mercurial/branchmap.py --- a/mercurial/branchmap.py +++ b/mercurial/branchmap.py @@ -200,7 +200,8 @@ def _verifyall(self): """ verifies nodes of all the branches """ - for b in self._entries: + needverification = set(self._entries.keys()) - self._verifiedbranches + for b in needverification: self._verifybranch(b) def __iter__(self):