From cb5b0707bb660cd6bdc104a7c44e05c5cc2a79c1 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Thu, 13 Jun 2019 12:33:00 -0500 Subject: [PATCH] Add track info from tidal API into song's classes --- src/extractors/tidal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extractors/tidal.py b/src/extractors/tidal.py index 4d7b6d0..0a4ae75 100644 --- a/src/extractors/tidal.py +++ b/src/extractors/tidal.py @@ -63,8 +63,8 @@ class interface(object): s.artist = search_result.artist.name s.duration = seconds_to_string(search_result.duration) s.url = search_result.id + s.info = search_result self.results.append(s) - log.debug("{0} results found.".format(len(self.results))) def get_download_url(self, url):