Converting multi-line-string-comment to a real comment.
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 13 Aug 2011 17:52:56 +0000 (12:52 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 13 Aug 2011 17:52:56 +0000 (12:52 -0500)
mediagoblin/process_media/__init__.py

index 1883691978584ed2411bc769122b72623b11dc3f..e1289a4c861b626841497286645447781a287d32 100644 (file)
@@ -147,11 +147,9 @@ def process_image(entry):
     with closing(thumb_file):
         thumb.save(thumb_file, "JPEG", quality=90)
 
-    """
-    If the size of the original file exceeds the specified size of a `medium`
-    file, a `medium.jpg` files is created and later associated with the media
-    entry.
-    """
+    # If the size of the original file exceeds the specified size of a `medium`
+    # file, a `medium.jpg` files is created and later associated with the media
+    # entry.
     medium = Image.open(queued_filename)
     medium_processed = False