##// END OF EJS Templates
revlog: fix typo in 'buildtext' name...
Boris Feld -
r39228:dbc5ead9 default
parent child Browse files
Show More
@@ -2661,7 +2661,7 b' class revlog(object):'
2661 self._writeentry(transaction, ifh, dfh, entry, data, link, offset)
2661 self._writeentry(transaction, ifh, dfh, entry, data, link, offset)
2662
2662
2663 if alwayscache and rawtext is None:
2663 if alwayscache and rawtext is None:
2664 rawtext = deltacomputer._buildtext(revinfo, fh)
2664 rawtext = deltacomputer.buildtext(revinfo, fh)
2665
2665
2666 if type(rawtext) == bytes: # only accept immutable objects
2666 if type(rawtext) == bytes: # only accept immutable objects
2667 self._cache = (node, curr, rawtext)
2667 self._cache = (node, curr, rawtext)
General Comments 0
You need to be logged in to leave comments. Login now