Fix exception handler in test

`{err:r}` -> `{err!r}`
This commit is contained in:
DarkCat09 2024-05-28 09:05:42 +04:00
parent 3e955b2d8f
commit 21dbc8659d
Signed by: DarkCat09
GPG key ID: 0A26CD5B3345D6E3

View file

@ -69,7 +69,7 @@ class TestPostProcessorsOnFakeData(TestCase):
if ret != 0:
raise RuntimeError(f'FFmpeg returned {ret} exit code')
except Exception as err:
self.skipTest(f'Error while writing empty MP3: {err:r}')
self.skipTest(f'Error while writing empty MP3: {err!r}')
id3pp.ID3TagsPP().run(INFO_AFTER)