Skip to content
Snippets Groups Projects
Commit 1635579f9baf authored by Laurent Charignon's avatar Laurent Charignon
Browse files

phases: fix bug where native phase computation wasn't called

I forgot to include this change as a previous diff and the native code to
compute the phases was never called. The AttributeError was silently caught and
the pure implementation was used instead.
parent 7d24a41200d3
No related branches found
No related tags found
No related merge requests found
......@@ -726,7 +726,7 @@
return self._headrevs()
def computephases(self, roots):
return self.index.computephases(roots)
return self.index.computephasesmapsets(roots)
def _headrevs(self):
count = len(self)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment