1
0
Fork 0
mirror of synced 2025-07-03 03:47:20 +02:00

Fix the testsuite

This commit is contained in:
jvoisin 2019-03-23 00:41:23 +01:00
parent 2405df0469
commit b8c92fec09
2 changed files with 2 additions and 1 deletions

View file

@ -38,7 +38,7 @@ class MP3Parser(MutagenParser):
metadata = {} # type: Dict[str, Union[str, dict]]
meta = mutagen.File(self.filename).tags
for key in meta:
if not hasattr(meta[key], 'text'):
if not hasattr(meta[key], 'text'): # pragma: no cover
continue
metadata[key.rstrip(' \t\r\n\0')] = ', '.join(map(str, meta[key].text))
return metadata