Commit c84b4e18 authored by Chris McDonough's avatar Chris McDonough

This isn't C.

parent 08777bb5
...@@ -937,7 +937,7 @@ class ClientStorage(object): ...@@ -937,7 +937,7 @@ class ClientStorage(object):
# We write to a temporary file first, so we do not accidentally # We write to a temporary file first, so we do not accidentally
# allow half-baked copies of this blob be loaded # allow half-baked copies of this blob be loaded
tempfd, tempfilename = self.fshelper.blob_mkstemp(oid, serial) tempfd, tempfilename = self.fshelper.blob_mkstemp(oid, serial)
tempfile = fdopen(tempfd, 'wb') tempfile = os.fdopen(tempfd, 'wb')
offset = 0 offset = 0
while True: while True:
......
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