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.
2 parents 685af89 + 9f02308 commit 4094fe8Copy full SHA for 4094fe8
soundclouddownloader/main.py
@@ -210,11 +210,11 @@ def main() -> None:
210
zip_file = downloader.download_playlist(
211
playlist_url, output_dir, max_workers=3, should_zip=should_zip
212
)
213
- if result:
+ if zip_file:
214
if should_zip:
215
- logger.success(f"Playlist downloaded and zipped: {result}")
+ logger.success(f"Playlist downloaded and zipped: {zip_file}")
216
else:
217
- logger.success(f"Playlist downloaded to directory: {result}")
+ logger.success(f"Playlist downloaded to directory: {zip_file}")
218
219
logger.error("Failed to download playlist.")
220
sys.stdout.flush()
0 commit comments