Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
adjust some not x not found at y warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
glomatico committed Aug 27, 2024
1 parent 3a5307b commit 292c548
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spotify_web_downloader/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def main(
logger.debug("Setting up CDM")
downloader.set_cdm()
if not downloader.ffmpeg_path_full and remux_mode == RemuxMode.FFMPEG:
logger.critical(X_NOT_FOUND_STRING.format("ffmpeg", ffmpeg_path))
logger.critical(X_NOT_FOUND_STRING.format("FFmpeg", ffmpeg_path))
return
if (
download_mode_song == DownloadModeSong.ARIA2C
Expand All @@ -380,7 +380,7 @@ def main(
download_mode_video == DownloadModeVideo.NM3U8DLRE
and not downloader.nm3u8dlre_path_full
):
logger.critical(X_NOT_FOUND_STRING.format("nm3u8dlre", nm3u8dlre_path))
logger.critical(X_NOT_FOUND_STRING.format("N_m3u8DL-RE", nm3u8dlre_path))
return
if remux_mode == RemuxMode.MP4BOX:
if not downloader.mp4box_path_full:
Expand Down

0 comments on commit 292c548

Please sign in to comment.