From 83f7d347d53ea395cd354bd790d49533d06ca717 Mon Sep 17 00:00:00 2001 From: Sandro Tosi Date: Sun, 21 Aug 2011 00:16:18 +0200 Subject: [PATCH] #5301: add image/vnd.microsoft.icon (.ico) MIME type --- Lib/mimetypes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 2ef71f9482..961e47fdf5 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -425,6 +425,7 @@ def _default_mime_types(): '.hdf' : 'application/x-hdf', '.htm' : 'text/html', '.html' : 'text/html', + '.ico' : 'image/vnd.microsoft.icon', '.ief' : 'image/ief', '.jpe' : 'image/jpeg', '.jpeg' : 'image/jpeg', -- 2.40.0