diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-06-06 09:57:27 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-06-06 09:57:27 -0500 |
commit | eb7f69ac30a56fea664519b91788b3a98a598780 (patch) | |
tree | 21716198b2aef395b29e694ae19a24b0958b1eee | |
parent | d57dd89e98eb0d1235a5aae82afe8aea6a4a3d6e (diff) | |
download | mediagoblin-eb7f69ac30a56fea664519b91788b3a98a598780.tar.lz mediagoblin-eb7f69ac30a56fea664519b91788b3a98a598780.tar.xz mediagoblin-eb7f69ac30a56fea664519b91788b3a98a598780.zip |
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! :)
-rw-r--r-- | mediagoblin/media_types/video/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |