23 lines
864 B
Diff
23 lines
864 B
Diff
|
From e83487a20bacd4f9b33d0478861671bf79468f59 Mon Sep 17 00:00:00 2001
|
||
|
From: Louis Sautier <sautier.louis@gmail.com>
|
||
|
Date: Mon, 13 Aug 2018 12:15:13 +0200
|
||
|
Subject: [PATCH] Allow x-gzip as MIME type for gzip files, fixes #96
|
||
|
|
||
|
---
|
||
|
test/test.py | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/test/test.py b/test/test.py
|
||
|
index e29335f..e3ee703 100755
|
||
|
--- a/test/test.py
|
||
|
+++ b/test/test.py
|
||
|
@@ -54,7 +54,7 @@ def test_mime_types(self):
|
||
|
self.assert_values(m, {
|
||
|
'magic._pyc_': 'application/octet-stream',
|
||
|
'test.pdf': 'application/pdf',
|
||
|
- 'test.gz': 'application/gzip',
|
||
|
+ 'test.gz': ('application/gzip', 'application/x-gzip'),
|
||
|
'text.txt': 'text/plain',
|
||
|
b'\xce\xbb'.decode('utf-8'): 'text/plain',
|
||
|
b'\xce\xbb': 'text/plain',
|