[utils] Reorder items in mimetype2ext alphabetically

merge-requests/5/head
Yen Chi Hsuan 2016-01-25 01:01:15 +08:00
parent f6861ec96f
commit a0d8d704df
1 changed files with 3 additions and 3 deletions

View File

@ -1828,11 +1828,11 @@ def mimetype2ext(mt):
_, _, res = mt.rpartition('/')
return {
'x-ms-wmv': 'wmv',
'x-mp4-fragmented': 'mp4',
'ttml+xml': 'ttml',
'3gpp': '3gp',
'ttml+xml': 'ttml',
'x-flv': 'flv',
'x-mp4-fragmented': 'mp4',
'x-ms-wmv': 'wmv',
}.get(res, res)