File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -970,6 +970,7 @@ mimetypes
970970 * Add 7z ``application/x-7z-compressed `` (``.7z ``)
971971 * Add Android Package ``application/vnd.android.package-archive `` (``.apk ``)
972972 when not strict
973+ * Add deb ``application/x-debian-package `` (``.deb ``)
973974 * Add M4V ``video/x-m4v `` (``.m4v ``)
974975 * Add PHP ``application/x-httpd-php `` (``.php ``)
975976 * Add RAR ``application/vnd.rar `` (``.rar ``)
Original file line number Diff line number Diff line change @@ -512,6 +512,7 @@ def _default_mime_types():
512512 '.bcpio' : 'application/x-bcpio' ,
513513 '.cpio' : 'application/x-cpio' ,
514514 '.csh' : 'application/x-csh' ,
515+ '.deb' : 'application/x-debian-package' ,
515516 '.dvi' : 'application/x-dvi' ,
516517 '.gtar' : 'application/x-gtar' ,
517518 '.hdf' : 'application/x-hdf' ,
Original file line number Diff line number Diff line change @@ -242,6 +242,7 @@ def check_extensions():
242242 ("application/vnd.openxmlformats-officedocument.wordprocessingml.document" , ".docx" ),
243243 ("application/vnd.rar" , ".rar" ),
244244 ("application/x-7z-compressed" , ".7z" ),
245+ ("application/x-debian-package" , ".deb" ),
245246 ("application/x-httpd-php" , ".php" ),
246247 ("application/x-rpm" , ".rpm" ),
247248 ("application/x-texinfo" , ".texi" ),
You can’t perform that action at this time.
0 commit comments