1
0
Fork 0

Fix the build

This commit is contained in:
jvoisin 2018-05-16 00:08:45 +02:00
parent be6d32afa8
commit 7afff93e9c
1 changed files with 2 additions and 1 deletions

View File

@ -30,11 +30,12 @@ def get_parser(filename: str) -> (T, str):
# A set of extension that aren't supported, despite matching a known mimetype
unknown_extensions = set(['bat', 'c', 'h', 'ksh', 'pl', 'txt', 'asc',
'text', 'pot', 'brf', 'srt', 'rdf', 'wsdl', 'xpdl', 'xsl', 'xsd'])
mtype, _ = mimetypes.guess_type(filename)
_, extension = os.path.splitext(filename)
if extension in unknown_extensions:
return None, mtype
mtype, _ = mimetypes.guess_type(filename)
for c in _get_parsers():
if mtype in c.mimetypes:
try: