Minor graphical fix

This commit is contained in:
Kepoor Hampond 2016-12-31 22:45:11 -08:00
parent 110d02dd02
commit 9bd37884b9
3 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,6 @@ class Manager:
if not artist:
artist = self.args.artist
os.system("clear")
print (color(song, ["BOLD", "UNDERLINE"]) + ' by ' + color(artist, ["BOLD", "UNDERLINE"]))
search_terms = song + " " + artist + " lyrics"

View file

@ -57,6 +57,7 @@ class Metadata:
self.mp3['album'] = album
self.mp3.save()
return True
except Exception:
self.mp3['album'] = self.song
self.mp3.save()

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='irs',
version='2.6.12',
version='2.6.13',
description='A music downloader that just gets metadata.',
url='https://github.com/kepoorhampond/irs',
author='Kepoor Hampond',