##// END OF EJS Templates
git-hgext: adjust to the lack of `changelog.heads` method...
marmoute -
r52197:d91b5537 default
parent child Browse files
Show More
@@ -324,7 +324,7 b' class changelog(baselog):'
324 if common is None:
324 if common is None:
325 common = [sha1nodeconstants.nullid]
325 common = [sha1nodeconstants.nullid]
326 if heads is None:
326 if heads is None:
327 heads = self.heads()
327 heads = [self.node(r) for r in self.headrevs()]
328
328
329 common = [self.rev(n) for n in common]
329 common = [self.rev(n) for n in common]
330 heads = [self.rev(n) for n in heads]
330 heads = [self.rev(n) for n in heads]
General Comments 0
You need to be logged in to leave comments. Login now