Commit eeca2c9f authored by Jim Fulton's avatar Jim Fulton

Fixed stupid name error.

parent 23e98ba0
...@@ -184,7 +184,7 @@ ...@@ -184,7 +184,7 @@
# may have a back pointer to a version record or to a non-version # may have a back pointer to a version record or to a non-version
# record. # record.
# #
__version__='$Revision: 1.16 $'[11:-2] __version__='$Revision: 1.17 $'[11:-2]
import struct, time, os, bpthread, string, base64 import struct, time, os, bpthread, string, base64
from struct import pack, unpack from struct import pack, unpack
...@@ -454,7 +454,7 @@ class FileStorage(BaseStorage.BaseStorage): ...@@ -454,7 +454,7 @@ class FileStorage(BaseStorage.BaseStorage):
seek(pos) seek(pos)
doid,serial,prev,tloc,vlen = unpack(">8s8s8s8sH", file.read(34)) doid,serial,prev,tloc,vlen = unpack(">8s8s8s8sH", file.read(34))
if doid != oid: if doid != oid:
raise CorruptedDataError, h raise CorruptedDataError, pos
if vlen: if vlen:
seek(24,1) # skip plen, pnv, and pv seek(24,1) # skip plen, pnv, and pv
return file.read(vlen) return file.read(vlen)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment