##// END OF EJS Templates
index: use `index.rev` in `exchange.fallbackheads`...
marmoute -
r43962:a49b2e25 default
parent child Browse files
Show More
@@ -528,8 +528,8 b' class pushoperation(object):'
528 # We can pick:
528 # We can pick:
529 # * missingheads part of common (::commonheads)
529 # * missingheads part of common (::commonheads)
530 common = self.outgoing.common
530 common = self.outgoing.common
531 nm = self.repo.changelog.nodemap
531 rev = self.repo.changelog.index.rev
532 cheads = [node for node in self.revs if nm[node] in common]
532 cheads = [node for node in self.revs if rev(node) in common]
533 # and
533 # and
534 # * commonheads parents on missing
534 # * commonheads parents on missing
535 revset = unfi.set(
535 revset = unfi.set(
General Comments 0
You need to be logged in to leave comments. Login now