##// END OF EJS Templates
revlog: correct type in check to verify rawtext is immutable...
Augie Fackler -
r35863:be923ce4 default
parent child Browse files
Show More
@@ -2099,7 +2099,7 b' class revlog(object):'
2099 if alwayscache and rawtext is None:
2099 if alwayscache and rawtext is None:
2100 rawtext = deltacomputer._buildtext(revinfo, fh)
2100 rawtext = deltacomputer._buildtext(revinfo, fh)
2101
2101
2102 if type(rawtext) == str: # only accept immutable objects
2102 if type(rawtext) == bytes: # only accept immutable objects
2103 self._cache = (node, curr, rawtext)
2103 self._cache = (node, curr, rawtext)
2104 self._chainbasecache[curr] = chainbase
2104 self._chainbasecache[curr] = chainbase
2105 return node
2105 return node
General Comments 0
You need to be logged in to leave comments. Login now