1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-20 03:11:04 +00:00

Suppress warnings from cover files

Ref #184
This commit is contained in:
Alban Féron 2020-04-25 16:32:57 +02:00
parent 8014c7b2df
commit 3670195719
No known key found for this signature in database
GPG Key ID: 8CE0313646D16165

View File

@ -3,12 +3,13 @@
# This file is part of Supysonic. # This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API. # Supysonic is a Python implementation of the Subsonic server API.
# #
# Copyright (C) 2018 Alban 'spl0k' Féron # Copyright (C) 2018-2020 Alban 'spl0k' Féron
# #
# Distributed under terms of the GNU AGPLv3 license. # Distributed under terms of the GNU AGPLv3 license.
import os.path import os.path
import re import re
import warnings
from base64 import b64decode from base64 import b64decode
from mutagen import File, FileType from mutagen import File, FileType
@ -63,6 +64,8 @@ def is_valid_cover(path):
return False return False
try: # Ensure the image can be read try: # Ensure the image can be read
with warnings.catch_warnings():
warnings.simplefilter("ignore")
with Image.open(path): with Image.open(path):
return True return True
except IOError: except IOError: