Commit 4c55d269 authored by Chris McDonough's avatar Chris McDonough

Fix typo.

parent cfe7eae1
...@@ -62,7 +62,7 @@ class Blob(Persistent): ...@@ -62,7 +62,7 @@ class Blob(Persistent):
if self._p_blob_uncommitted is None: if self._p_blob_uncommitted is None:
# Create a new working copy # Create a new working copy
self._p_blob_uncommitted = utils.mktmp() self._p_blob_uncommitted = utils.mktemp()
uncommitted = BlobFile(self._p_blob_uncommitted, mode, self) uncommitted = BlobFile(self._p_blob_uncommitted, mode, self)
# NOTE: _p_blob data appears by virtue of Connection._setstate # NOTE: _p_blob data appears by virtue of Connection._setstate
utils.cp(file(self._p_blob_data), uncommitted) utils.cp(file(self._p_blob_data), uncommitted)
......
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