We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef92150 commit 6c66b68Copy full SHA for 6c66b68
just_playback/playback.py
@@ -46,7 +46,7 @@ def load_file(self, path_to_file: str) -> None:
46
47
audio_file = pathlib.Path(path_to_file)
48
if not audio_file.exists() or not path_to_file:
49
- raise FileNotFoundError('Audio file not found: %s ' % path_to_file)
+ raise FileNotFoundError('Audio file not found: {}'.format(path_to_file))
50
51
self.__bind(lib.terminate_audio_stream(self.__ma_attrs))
52
0 commit comments