Fixed FeatureOptions not working

This commit is contained in:
RemixDev 2020-10-08 12:06:08 +02:00
parent 49cf460131
commit 4d09925f64
3 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,3 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
__version__ = "1.5.11" __version__ = "1.5.12"

View File

@ -33,16 +33,16 @@ class OverwriteOption():
class FeaturesOption(): class FeaturesOption():
"""What should I do with featured artists?""" """What should I do with featured artists?"""
NO_CHANGE = 0 NO_CHANGE = "0"
"""Do nothing""" """Do nothing"""
REMOVE_TITLE = 1 REMOVE_TITLE = "1"
"""Remove from track title""" """Remove from track title"""
REMOVE_TITLE_ALBUM = 3 REMOVE_TITLE_ALBUM = "3"
"""Remove from track title and album title""" """Remove from track title and album title"""
MOVE_TITLE = 2 MOVE_TITLE = "2"
"""Move to track title""" """Move to track title"""
DEFAULT_SETTINGS = { DEFAULT_SETTINGS = {

View File

@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
setup( setup(
name="deemix", name="deemix",
version="1.5.11", version="1.5.12",
description="A barebone deezer downloader library", description="A barebone deezer downloader library",
long_description=README, long_description=README,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",