diff options
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. |