This commit is contained in:
Kovid Goyal 2011-07-26 11:42:57 -06:00
parent e61b86cd24
commit abe30422a6

View File

@ -125,7 +125,7 @@ class IndexEntry(object): # {{{
buf.append(1)
header = b'TAGX'
header += pack(b'>I', len(buf)) # table length
header += pack(b'>I', 12+len(buf)) # table length
header += pack(b'>I', 1) # control byte count
return header + bytes(buf)