From 7f5fe6b9537b433dc9a8c2c8bfa815df9597f917 Mon Sep 17 00:00:00 2001 From: Cooper Hammond Date: Tue, 28 May 2019 10:19:48 -0700 Subject: [PATCH] Added in another status message and changed default organization method --- irs/glue/cli.py | 2 +- irs/glue/song.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/irs/glue/cli.py b/irs/glue/cli.py index 947751f..eaae45f 100644 --- a/irs/glue/cli.py +++ b/irs/glue/cli.py @@ -28,7 +28,7 @@ def main(): help="Specify user name for playlist. Must be used with -A/--album") parser.add_argument("-o", "--organization", dest="organization", - default="standard", help="Specify type of organization for list." + default="single-folder", help="Specify type of organization for list." "Used when downloading spotify playlist/album") args = parser.parse_args() diff --git a/irs/glue/song.py b/irs/glue/song.py index 77989cf..d819c9a 100644 --- a/irs/glue/song.py +++ b/irs/glue/song.py @@ -38,6 +38,8 @@ class Song(object): self.tags = self.get_relevant_tags() + print("'{}' by {}:".format(self.tags["title"], self.tags["artist"])) + print("Searching youtube ...") song_url = youtube.find_url(self.tags["title"], self.tags["artist"])