[Zodb-checkins]
SVN: ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py
This isn't C.
Chris McDonough
chrism at plope.com
Mon Feb 27 16:47:43 EST 2006
Log message for revision 65536:
This isn't C.
Changed:
U ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py
-=-
Modified: ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py
===================================================================
--- ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py 2006-02-27 21:40:03 UTC (rev 65535)
+++ ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py 2006-02-27 21:47:43 UTC (rev 65536)
@@ -937,7 +937,7 @@
# We write to a temporary file first, so we do not accidentally
# allow half-baked copies of this blob be loaded
tempfd, tempfilename = self.fshelper.blob_mkstemp(oid, serial)
- tempfile = fdopen(tempfd, 'wb')
+ tempfile = os.fdopen(tempfd, 'wb')
offset = 0
while True:
More information about the Zodb-checkins
mailing list