Commit b17ac9c0 authored by Christopher Petrilli's avatar Christopher Petrilli

Updated to not use the multiple list.append() arguments. (Python 1.6)

parent 38002828
...@@ -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.35 $'[11:-2] __version__='$Revision: 1.36 $'[11:-2]
import struct, time, os, bpthread, string, base64, sys import struct, time, os, bpthread, string, base64, sys
from struct import pack, unpack from struct import pack, unpack
...@@ -630,7 +630,7 @@ class FileStorage(BaseStorage.BaseStorage): ...@@ -630,7 +630,7 @@ class FileStorage(BaseStorage.BaseStorage):
write=tfile.write write=tfile.write
pos=self._pos pos=self._pos
here=tfile.tell()+pos+self._thl here=tfile.tell()+pos+self._thl
self._tappend(oid, here) self._tappend((oid, here))
serial=self._serial serial=self._serial
write(pack(">8s8s8s8sH8s", write(pack(">8s8s8s8sH8s",
oid,serial,p64(old),p64(pos), oid,serial,p64(old),p64(pos),
......
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