aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/storage/cloudfiles.py
diff options
context:
space:
mode:
Diffstat (limited to 'mediagoblin/storage/cloudfiles.py')
-rw-r--r--mediagoblin/storage/cloudfiles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/storage/cloudfiles.py b/mediagoblin/storage/cloudfiles.py
index 2054a0d0..c800005f 100644
--- a/mediagoblin/storage/cloudfiles.py
+++ b/mediagoblin/storage/cloudfiles.py
@@ -96,7 +96,7 @@ class CloudFilesStorage(StorageInterface):
if mimetype:
obj.content_type = mimetype[0]
# this should finally fix the bug #429
- meta_data = {'mime-type' : mimetype}
+ meta_data = {'mime-type' : mimetype[0]}
obj.metadata = meta_data
return CloudFilesStorageObjectWrapper(obj, *args, **kwargs)