equal
deleted
inserted
replaced
298 if raw: |
298 if raw: |
299 validatehash = flagutil.processflagsraw(self, rawtext, flags) |
299 validatehash = flagutil.processflagsraw(self, rawtext, flags) |
300 text = rawtext |
300 text = rawtext |
301 else: |
301 else: |
302 r = flagutil.processflagsread(self, rawtext, flags) |
302 r = flagutil.processflagsread(self, rawtext, flags) |
303 text, validatehash, sidedata = r |
303 text, validatehash = r |
304 if validatehash: |
304 if validatehash: |
305 self.checkhash(text, node, rev=rev) |
305 self.checkhash(text, node, rev=rev) |
306 |
306 |
307 return text |
307 return text |
308 |
308 |