Comments
Patch
@@ -294,7 +294,8 @@
validatehash = self._processflagsraw(rawtext, flags)
text = rawtext
else:
- text, validatehash = self._processflagsread(rawtext, flags)
+ r = self._processflagsread(rawtext, flags)
+ text, validatehash, sidedata = r
if validatehash:
self.checkhash(text, node, rev=rev)
@@ -118,7 +118,8 @@
processed text and ``validatehash`` is a bool indicating whether the
returned text should be checked for hash integrity.
"""
- return self._processflagsfunc(text, flags, 'read')
+ text, vhash = self._processflagsfunc(text, flags, 'read')
+ return text, vhash, {}
def _processflagswrite(self, text, flags):
"""Inspect revision data flags and applies write transformations defined
@@ -1660,7 +1660,8 @@
validatehash = self._processflagsraw(rawtext, flags)
text = rawtext
else:
- text, validatehash = self._processflagsread(rawtext, flags)
+ r = self._processflagsread(rawtext, flags)
+ text, validatehash, sidedata = r
if validatehash:
self.checkhash(text, node, rev=rev)
if not validated:
@@ -325,7 +325,7 @@
flags = store.getmeta(self.filename, node).get(constants.METAKEYFLAG, 0)
if flags == 0:
return rawtext
- text, verifyhash = self._processflagsread(rawtext, flags)
+ text, verifyhash, sidedata = self._processflagsread(rawtext, flags)
return text
def rawdata(self, node):