mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
handle mime svg in devel
This commit is contained in:
parent
f20185c113
commit
ac2f0bdf57
@ -7,6 +7,12 @@
|
||||
import sys
|
||||
import traceback
|
||||
|
||||
# Centos-7 doesn't include the svg mime type
|
||||
# /usr/lib64/python/mimetypes.py
|
||||
import mimetypes
|
||||
mimetypes.add_type("image/svg+xml", ".svg", True)
|
||||
mimetypes.add_type("image/svg+xml", ".svgz", True)
|
||||
|
||||
# Django Split Settings
|
||||
from split_settings.tools import optional, include
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user