From: Michael Tremer Date: Sun, 19 Dec 2010 10:44:22 +0000 (+0100) Subject: Fix typo so images from the "i-use" service get delivered with a correct mime type. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=192f0bdf1215e85cca1c8f1d00f26667d3b452a3;p=ipfire.org.git Fix typo so images from the "i-use" service get delivered with a correct mime type. --- diff --git a/www/webapp/handlers_iuse.py b/www/webapp/handlers_iuse.py index b7a66f29..62e0eb37 100644 --- a/www/webapp/handlers_iuse.py +++ b/www/webapp/handlers_iuse.py @@ -35,6 +35,6 @@ class IUseImage(BaseHandler): # Save the image to the memcache for 15 minutes self.memcached.set(mem_id, image, 15*60) - self.set_header("Content-type", "image/png") + self.set_header("Content-Type", "image/png") self.write(image)