From 43e68e688deecb4cee465d8fa45d8760d73ef373 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Fri, 10 Jun 2022 23:47:07 +0200 Subject: [PATCH] fix small typo --- music_assistant/controllers/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/controllers/streams.py b/music_assistant/controllers/streams.py index b128f437..dbefc0c5 100644 --- a/music_assistant/controllers/streams.py +++ b/music_assistant/controllers/streams.py @@ -103,7 +103,7 @@ class StreamsController: ffmpeg_present, libsoxr_support = await check_audio_support(True) if not ffmpeg_present: self.logger.error( - "FFmpeg binary not found on your system, " "playback will NOT work!." + "FFmpeg binary not found on your system, playback will NOT work!." ) elif not libsoxr_support: self.logger.warning( -- 2.34.1