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"])