From 1e34124de96be7ff760220565a74342554c2bcfd Mon Sep 17 00:00:00 2001 From: Ritiek Malhotra Date: Sun, 2 Dec 2018 12:16:02 +0530 Subject: [PATCH 1/2] Import spotipy in downloader.py --- spotdl/downloader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/spotdl/downloader.py b/spotdl/downloader.py index 13d0407..9dc19e2 100644 --- a/spotdl/downloader.py +++ b/spotdl/downloader.py @@ -5,6 +5,7 @@ from spotdl import internals from spotdl import spotify_tools from spotdl import youtube_tools +import spotipy from logzero import logger as log import os From 608c53f759397d379c697624fdaf9c3ba3dbb0d7 Mon Sep 17 00:00:00 2001 From: Ritiek Malhotra Date: Sun, 2 Dec 2018 12:22:02 +0530 Subject: [PATCH 2/2] Fixed: Missing import spotipy --- CHANGES.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 31005fb..e711ac5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Changed - Refactored core downloading module ([@ritiek](https://github.com/ritiek)) (#410) +### Fixed +- Included a missing `import spotipy` in downloader.py ([@ritiek](https://github.com/ritiek)) (#440) + ## [1.1.0] - 2018-11-13 ### Added - Output error details when track download fails from list file ([@ManveerBasra](https://github.com/ManveerBasra)) (#406)