From 5242285637e91f348b234c1863bcf170f6b190c4 Mon Sep 17 00:00:00 2001 From: Arthur Lutz Date: Fri, 23 Aug 2019 12:34:29 +0200 Subject: [PATCH 1/2] [spotdl] generate_m3u only takes track_file as argument Fixes #559 --- spotdl/spotdl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotdl/spotdl.py b/spotdl/spotdl.py index 569ef63..04a5ed9 100644 --- a/spotdl/spotdl.py +++ b/spotdl/spotdl.py @@ -29,7 +29,7 @@ def match_args(): elif const.args.list: if const.args.write_m3u: youtube_tools.generate_m3u( - track_file=const.args.list, text_file=const.args.write_to + track_file=const.args.list ) else: list_dl = downloader.ListDownloader( From e4658825f765bb56aca682c57d5317436c9e7471 Mon Sep 17 00:00:00 2001 From: Arthur Lutz Date: Sat, 24 Aug 2019 08:50:30 +0200 Subject: [PATCH 2/2] [CHANGES] fixed changelog --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 157f028..c74bd0c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Added leading Zeros in `track_number` for correct sorting ([@Dsujan](https://github.com/Dsujan)) (#592) ### Fixed -- +- Generate list error --write-m3u ([@arthurlutz](https://github.com/arthurlutz)) (#559) ### Changed - Fetch lyrics from Genius and fallback to LyricWikia if not found ([@ritiek](https://github.com/ritiek)) (#585)