From f46c61cde9dcafc9372b575369affc8bb619631e Mon Sep 17 00:00:00 2001 From: Rafael Moraes <50295204+glomatico@users.noreply.github.com> Date: Sat, 21 Sep 2024 22:16:41 -0300 Subject: [PATCH] fix unplayplay not found message --- votify/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/votify/cli.py b/votify/cli.py index bfd9707..a5d80b8 100644 --- a/votify/cli.py +++ b/votify/cli.py @@ -323,7 +323,7 @@ def main( ) if not lrc_only: if not downloader.unplayplay_path_full: - logger.critical(X_NOT_FOUND_STRING.format("playplay", unplayplay_path)) + logger.critical(X_NOT_FOUND_STRING.format("Unplayplay", unplayplay_path)) return if download_mode == DownloadMode.ARIA2C and not downloader.aria2c_path_full: logger.critical(X_NOT_FOUND_STRING.format("aria2c", aria2c_path))