diff options
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/subscriptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/subscriptions.py b/youtube/subscriptions.py index 7a2bf7d..aa6101d 100644 --- a/youtube/subscriptions.py +++ b/youtube/subscriptions.py @@ -752,7 +752,7 @@ def import_subscriptions(): except (AssertionError, IndexError, defusedxml.ElementTree.ParseError) as e: return '400 Bad Request: Unable to read opml xml file, or the file is not the expected format', 400 - elif mime_type == 'text/csv': + elif mime_type in ('text/csv', 'application/vnd.ms-excel'): content = file.read().decode('utf-8') reader = csv.reader(content.splitlines()) channels = [] |