From 9c171efb126c764f8d02102104a0463d2cbda114 Mon Sep 17 00:00:00 2001 From: Kepoor Hampond Date: Mon, 16 Jan 2017 13:23:25 -0800 Subject: [PATCH] Didn't remove dev stuff --- irs/manager.py | 7 ++----- setup.py | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/irs/manager.py b/irs/manager.py index 1eb2bbf..85cdfbb 100644 --- a/irs/manager.py +++ b/irs/manager.py @@ -190,7 +190,6 @@ class Manager: def get_album_contents(self, search): spotify = spotipy.Spotify() - results = spotify.search(q=search, type='album') items = results['albums']['items'] if len(items) > 0: @@ -212,7 +211,7 @@ class Manager: names.append(song) return names, album_id else: - print (bc.FAIL + "No results were found for your album search." + bc.ENDC) + print (bc.FAIL + "There was no results." + bc.ENDC) exit(1) def get_album_art(self, artist, album, id=None): @@ -231,9 +230,7 @@ class Manager: def rip_album(self): search = self.args.artist + " " + self.args.album - print(self.get_album_contents(search)) - import time - time.sleep(10) + songs, album_uri = self.get_album_contents(search) if not songs: print (bc.FAIL + "Could not find album." + bc.ENDC) diff --git a/setup.py b/setup.py index e948082..178a232 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='irs', - version='2.7.17', + version='2.7.18', description='A music downloader that just gets metadata.', url='https://github.com/kepoorhampond/irs', author='Kepoor Hampond',