diff options
| -rw-r--r-- | django/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/__init__.py b/django/__init__.py index 159a552..f69bffa 100644 --- a/django/__init__.py +++ b/django/__init__.py | |||
| @@ -61,7 +61,7 @@ class S3Storage(Storage): | |||
| 61 | 61 | ||
| 62 | def _save(self, filename, content): | 62 | def _save(self, filename, content): |
| 63 | # a stupid hack | 63 | # a stupid hack |
| 64 | #content = content.file | 64 | content = content.file |
| 65 | try: | 65 | try: |
| 66 | data = content.read() | 66 | data = content.read() |
| 67 | except IOError, err: | 67 | except IOError, err: |