tests/simplestorerepo.py
changeset 46709 3d740058b467
parent 46509 7a93b7b3dc2d
child 46715 45f0d5297698
equal deleted inserted replaced
46708:358737abeeef 46709:3d740058b467
   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