diff options
author | Andreas Jansson <andreas.s.t.jansson@gmail.com> | 2021-05-29 01:20:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-29 01:20:46 (GMT) |
commit | de14d709e35379e3682847c24f5969f3731ec5d4 (patch) | |
tree | 2b9f62165bb76f643a0344a1ad17e1268593bec8 /Lib/mimetypes.py | |
parent | 21dd43c01d6b9cd50512c9ab6d83c97cde3bf115 (diff) | |
download | cpython-de14d709e35379e3682847c24f5969f3731ec5d4.zip cpython-de14d709e35379e3682847c24f5969f3731ec5d4.tar.gz cpython-de14d709e35379e3682847c24f5969f3731ec5d4.tar.bz2 |
Remove duplicate mime type mapping .bmp -> image/x-ms-bmp (GH-26300)
Thanks for the contribution @andreasjansson
Diffstat (limited to 'Lib/mimetypes.py')
-rw-r--r-- | Lib/mimetypes.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 018793c..4cd9404 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -513,7 +513,6 @@ def _default_mime_types(): '.tif' : 'image/tiff', '.ico' : 'image/vnd.microsoft.icon', '.ras' : 'image/x-cmu-raster', - '.bmp' : 'image/x-ms-bmp', '.pnm' : 'image/x-portable-anymap', '.pbm' : 'image/x-portable-bitmap', '.pgm' : 'image/x-portable-graymap', |