diff options
-rw-r--r-- | Lib/mimetypes.py | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-12-08-15-09-41.bpo-22589.8ouqI6.rst | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 44112027cb..c86dd6d134 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -410,7 +410,7 @@ def _default_mime_types(): '.bat' : 'text/plain', '.bcpio' : 'application/x-bcpio', '.bin' : 'application/octet-stream', - '.bmp' : 'image/x-ms-bmp', + '.bmp' : 'image/bmp', '.c' : 'text/plain', '.cdf' : 'application/x-netcdf', '.cpio' : 'application/x-cpio', diff --git a/Misc/NEWS.d/next/Library/2017-12-08-15-09-41.bpo-22589.8ouqI6.rst b/Misc/NEWS.d/next/Library/2017-12-08-15-09-41.bpo-22589.8ouqI6.rst new file mode 100644 index 0000000000..e8469cba61 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-12-08-15-09-41.bpo-22589.8ouqI6.rst @@ -0,0 +1 @@ +Changed MIME type of .bmp from 'image/x-ms-bmp' to 'image/bmp' |