From: Christopher Allan Webber Date: Fri, 6 Jun 2014 14:57:27 +0000 (-0500) Subject: metadata here should really be stored_metadata. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=eb7f69ac30a56fea664519b91788b3a98a598780;p=mediagoblin.git metadata here should really be stored_metadata. We went through all the difficulty of converting the tags and never saved them! Thanks to Boris Bobrov for pointing this out. This commit also sponsored by William Kahn-Greene. Thanks Will... for everything! :) --- diff --git a/mediagoblin/media_types/video/processing.py b/mediagoblin/media_types/video/processing.py index abd5f36e..454f4ac4 100644 --- a/mediagoblin/media_types/video/processing.py +++ b/mediagoblin/media_types/video/processing.py @@ -109,7 +109,7 @@ def store_metadata(media_entry, metadata): dt.get_minute(), dt.get_second(), dt.get_microsecond()).isoformat() - metadata['tags'] = tags + stored_metadata['tags'] = tags # Only save this field if there's something to save if len(stored_metadata):