Fixed FeatureOptions not working
This commit is contained in:
parent
49cf460131
commit
4d09925f64
@ -1,3 +1,3 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
__version__ = "1.5.11"
|
||||
__version__ = "1.5.12"
|
||||
|
@ -33,16 +33,16 @@ class OverwriteOption():
|
||||
class FeaturesOption():
|
||||
"""What should I do with featured artists?"""
|
||||
|
||||
NO_CHANGE = 0
|
||||
NO_CHANGE = "0"
|
||||
"""Do nothing"""
|
||||
|
||||
REMOVE_TITLE = 1
|
||||
REMOVE_TITLE = "1"
|
||||
"""Remove from track title"""
|
||||
|
||||
REMOVE_TITLE_ALBUM = 3
|
||||
REMOVE_TITLE_ALBUM = "3"
|
||||
"""Remove from track title and album title"""
|
||||
|
||||
MOVE_TITLE = 2
|
||||
MOVE_TITLE = "2"
|
||||
"""Move to track title"""
|
||||
|
||||
DEFAULT_SETTINGS = {
|
||||
|
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
|
||||
|
||||
setup(
|
||||
name="deemix",
|
||||
version="1.5.11",
|
||||
version="1.5.12",
|
||||
description="A barebone deezer downloader library",
|
||||
long_description=README,
|
||||
long_description_content_type="text/markdown",
|
||||
|
Loading…
x
Reference in New Issue
Block a user