fix: correct typo in output directory variable name in download_missing_tracks function

This commit is contained in:
Kamil
2024-12-10 20:30:55 +00:00
parent 731d2db083
commit 477c869107

View File

@@ -166,8 +166,8 @@ def download_missing_tracks(self):
continue continue
# if outpur_dir not ends with .mp3, we need to add it # if outpur_dir not ends with .mp3, we need to add it
if not outpur_dir.endswith(".mp3"): if not output_dir.endswith(".mp3"):
outpur_dir += ".mp3" output_dir += ".mp3"
if not file_path.endswith(".mp3"): if not file_path.endswith(".mp3"):
file_path += ".mp3" file_path += ".mp3"