Fix exception handler in test
`{err:r}` -> `{err!r}`
This commit is contained in:
parent
3e955b2d8f
commit
21dbc8659d
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ class TestPostProcessorsOnFakeData(TestCase):
|
||||||
if ret != 0:
|
if ret != 0:
|
||||||
raise RuntimeError(f'FFmpeg returned {ret} exit code')
|
raise RuntimeError(f'FFmpeg returned {ret} exit code')
|
||||||
except Exception as err:
|
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)
|
id3pp.ID3TagsPP().run(INFO_AFTER)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue