mercurial/revlogutils/flagutil.py
changeset 42983 a45d670c2bfc
parent 42882 3bed541aa65d
child 42984 66dc5a522f37
equal deleted inserted replaced
42982:9d62f9fa332f 42983:a45d670c2bfc
   116 
   116 
   117         Returns a 2-tuple of ``(text, validatehash)`` where ``text`` is the
   117         Returns a 2-tuple of ``(text, validatehash)`` where ``text`` is the
   118         processed text and ``validatehash`` is a bool indicating whether the
   118         processed text and ``validatehash`` is a bool indicating whether the
   119         returned text should be checked for hash integrity.
   119         returned text should be checked for hash integrity.
   120         """
   120         """
   121         return self._processflagsfunc(text, flags, 'read')
   121         text, vhash = self._processflagsfunc(text, flags, 'read')
       
   122         return text, vhash, {}
   122 
   123 
   123     def _processflagswrite(self, text, flags):
   124     def _processflagswrite(self, text, flags):
   124         """Inspect revision data flags and applies write transformations defined
   125         """Inspect revision data flags and applies write transformations defined
   125         by registered flag processors.
   126         by registered flag processors.
   126 
   127