##// END OF EJS Templates
revlog: use `_format_flags` to access flags instead of `header`...
marmoute -
r47943:93c2e6cd default
parent child Browse files
Show More
@@ -510,8 +510,8 b' class revlog(object):'
510 510 % (flags >> 16, fmt, self.display_id)
511 511 )
512 512
513 self._inline = header & FLAG_INLINE_DATA
514 self._generaldelta = header & FLAG_GENERALDELTA
513 self._inline = self._format_flags & FLAG_INLINE_DATA
514 self._generaldelta = self._format_flags & FLAG_GENERALDELTA
515 515
516 516 elif fmt == REVLOGV2:
517 517 if flags & ~REVLOGV2_FLAGS:
General Comments 0
You need to be logged in to leave comments. Login now