diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-13 10:32:40 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 15:30:18 -0700 |
commit | 776e4d7adc45bfd94399165853fb23c94f31501b (patch) | |
tree | 2589aa80b8c7d715c9199c48b4ea958cd206fc94 | |
parent | c6eaa555de22329e6aa8657bd52c8a4e0a7fe00e (diff) | |
download | mediagoblin-776e4d7adc45bfd94399165853fb23c94f31501b.tar.lz mediagoblin-776e4d7adc45bfd94399165853fb23c94f31501b.tar.xz mediagoblin-776e4d7adc45bfd94399165853fb23c94f31501b.zip |
media:thumb not medium:thumb :)
-rw-r--r-- | mediagoblin/media_types/audio/processing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/media_types/audio/processing.py b/mediagoblin/media_types/audio/processing.py index 6c565eb4..67bf63b4 100644 --- a/mediagoblin/media_types/audio/processing.py +++ b/mediagoblin/media_types/audio/processing.py @@ -254,8 +254,8 @@ class CommonAudioProcessor(MediaProcessor): def generate_thumb(self, size=None): if not size: - max_width = mgg.global_config['medium:thumb']['max_width'] - max_height = mgg.global_config['medium:thumb']['max_height'] + max_width = mgg.global_config['media:thumb']['max_width'] + max_height = mgg.global_config['media:thumb']['max_height'] size = (max_width, max_height) thumb_tmp = os.path.join(self.workbench.dir, self.name_builder.fill( |