From 18ec9ff324d9bf1af33a7e5c11694d4ee0a83df4 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sun, 3 Jul 2011 17:37:41 -0500 Subject: [PATCH] New thumbnail size is apparently 180x135. We don't know if that's permanent but if it isn't it seems "Mostly Harmless" --- mediagoblin/process_media/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediagoblin/process_media/__init__.py b/mediagoblin/process_media/__init__.py index 0d1abcb3..a65c3ddc 100644 --- a/mediagoblin/process_media/__init__.py +++ b/mediagoblin/process_media/__init__.py @@ -21,7 +21,7 @@ from celery.task import task from mediagoblin import mg_globals as mgg -THUMB_SIZE = 200, 200 +THUMB_SIZE = 180, 135 MEDIUM_SIZE = 640, 640 -- 2.25.1