From 8204b903683f9e0f037ccfaa87622716019914d7 Mon Sep 17 00:00:00 2001 From: Nate Tangsurat Date: Mon, 14 Aug 2017 13:39:45 -0500 Subject: [PATCH] bpo-30824: Add mimetype for .json (#3048) --- Lib/mimetypes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index 3d68694864..5919b45a9b 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -439,6 +439,7 @@ def _default_mime_types(): '.jpeg' : 'image/jpeg', '.jpg' : 'image/jpeg', '.js' : 'application/javascript', + '.json' : 'application/json', '.ksh' : 'text/plain', '.latex' : 'application/x-latex', '.m1v' : 'video/mpeg', -- 2.40.0