From 7904402750df610102bc487dab4b4a3e01e15b91 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Wed, 28 Aug 2013 09:15:16 -0500 Subject: [PATCH] Should fix Beuc's bug with video thumbnail width... I think! --- mediagoblin/media_types/video/processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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( -- 2.25.1