diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-20 22:16:18 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-20 22:16:18 (GMT) |
commit | d31829329590acc98a94a79b1c5f1428235867e8 (patch) | |
tree | 026428a3bfd9dd8a585bc1001f9302e022d9b0f7 | |
parent | dc42beb55ee75ab8b56aae1f96a0c6be4fc08083 (diff) | |
download | cpython-d31829329590acc98a94a79b1c5f1428235867e8.zip cpython-d31829329590acc98a94a79b1c5f1428235867e8.tar.gz cpython-d31829329590acc98a94a79b1c5f1428235867e8.tar.bz2 |
#5301: add image/vnd.microsoft.icon (.ico) MIME type
-rw-r--r-- | Lib/mimetypes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 2ef71f9..961e47f 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', |