This commit is contained in:
Kepoor Hampond 2017-02-13 20:05:51 -08:00
parent 65c7709e39
commit 2e3a0e9196
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ def color(text, colors=[]):
for color in colors:
color_string += "bc.%s + " % color
color_string = color_string[:-2]
return (bc.ENDC + eval(color_string) + text + bc.ENDC)
return (bc.ENDC + eval(color_string) + str(text) + bc.ENDC)
def color_input(text):
print (bc.HEADER + text, end=" ")

View file

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