diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-31 21:20:41 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-31 21:20:41 -0500 |
commit | 781be9ee6f8dcaa99acbbe552d0e020ebe066117 (patch) | |
tree | 4513d2d65b6558716486aa9349fa4a55e5f72c4d /mediagoblin/storage.py | |
parent | 9674a9d4f602501de164cfac1fe3079919dcbfc3 (diff) | |
download | mediagoblin-781be9ee6f8dcaa99acbbe552d0e020ebe066117.tar.lz mediagoblin-781be9ee6f8dcaa99acbbe552d0e020ebe066117.tar.xz mediagoblin-781be9ee6f8dcaa99acbbe552d0e020ebe066117.zip |
Added a bit of clarification about what the medium.jpg corruption
issue was, specifically.
Diffstat (limited to 'mediagoblin/storage.py')
-rw-r--r-- | mediagoblin/storage.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mediagoblin/storage.py b/mediagoblin/storage.py index 24a9da6f..9cae0ca6 100644 --- a/mediagoblin/storage.py +++ b/mediagoblin/storage.py @@ -232,7 +232,9 @@ class CloudFilesStorage(StorageInterface): class StorageObjectWrapper(): """ Wrapper for python-cloudfiles's cloudfiles.storage_object.Object - used to circumvent the mystic `medium.jpg` corruption issue. + used to circumvent the mystic `medium.jpg` corruption issue, where + we had both python-cloudfiles and PIL doing buffering on both + ends and that breaking things. This wrapper currently meets mediagoblin's needs for a public_store file-like object. |