diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-28 09:15:16 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-28 09:15:47 -0500 |
commit | 7904402750df610102bc487dab4b4a3e01e15b91 (patch) | |
tree | 990c11c31e9cf6fa275e98d0025ddd0bb49754b5 | |
parent | a126ef4d893b9703b46b8a4e2664c5d29097f96f (diff) | |
download | mediagoblin-7904402750df610102bc487dab4b4a3e01e15b91.tar.lz mediagoblin-7904402750df610102bc487dab4b4a3e01e15b91.tar.xz mediagoblin-7904402750df610102bc487dab4b4a3e01e15b91.zip |
Should fix Beuc's bug with video thumbnail width... I think!
-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 ed224251..506c7501 100644 --- a/mediagoblin/media_types/video/processing.py +++ b/mediagoblin/media_types/video/processing.py @@ -223,7 +223,7 @@ class CommonVideoProcessor(MediaProcessor): '{basename}.thumbnail.jpg')) if not thumb_size: - thumb_size = (mgg.global_config['media:thumb']['max_width']) + thumb_size = (mgg.global_config['media:thumb']['max_width'],) # We will only use the width so that the correct scale is kept transcoders.VideoThumbnailerMarkII( |