mirror of
https://github.com/cooperhammond/irs.git
synced 2025-01-05 19:35:27 +00:00
Minor graphical fix
This commit is contained in:
parent
110d02dd02
commit
9bd37884b9
|
@ -73,7 +73,6 @@ class Manager:
|
||||||
if not artist:
|
if not artist:
|
||||||
artist = self.args.artist
|
artist = self.args.artist
|
||||||
|
|
||||||
os.system("clear")
|
|
||||||
print (color(song, ["BOLD", "UNDERLINE"]) + ' by ' + color(artist, ["BOLD", "UNDERLINE"]))
|
print (color(song, ["BOLD", "UNDERLINE"]) + ' by ' + color(artist, ["BOLD", "UNDERLINE"]))
|
||||||
|
|
||||||
search_terms = song + " " + artist + " lyrics"
|
search_terms = song + " " + artist + " lyrics"
|
||||||
|
|
|
@ -57,6 +57,7 @@ class Metadata:
|
||||||
self.mp3['album'] = album
|
self.mp3['album'] = album
|
||||||
self.mp3.save()
|
self.mp3.save()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
except Exception:
|
except Exception:
|
||||||
self.mp3['album'] = self.song
|
self.mp3['album'] = self.song
|
||||||
self.mp3.save()
|
self.mp3.save()
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='irs',
|
name='irs',
|
||||||
version='2.6.12',
|
version='2.6.13',
|
||||||
description='A music downloader that just gets metadata.',
|
description='A music downloader that just gets metadata.',
|
||||||
url='https://github.com/kepoorhampond/irs',
|
url='https://github.com/kepoorhampond/irs',
|
||||||
author='Kepoor Hampond',
|
author='Kepoor Hampond',
|
||||||
|
|
Loading…
Reference in a new issue