Fixed #39
This commit is contained in:
parent
b3ef035169
commit
09589f9603
|
@ -1,3 +1,3 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
__version__ = "1.2.14"
|
__version__ = "1.2.15"
|
||||||
|
|
|
@ -637,8 +637,8 @@ class Deezer:
|
||||||
if len(resp['data']) > 0:
|
if len(resp['data']) > 0:
|
||||||
return resp['data'][0]['id']
|
return resp['data'][0]['id']
|
||||||
else:
|
else:
|
||||||
return 0
|
return "0"
|
||||||
return 0
|
return "0"
|
||||||
|
|
||||||
def clean_search_query(term):
|
def clean_search_query(term):
|
||||||
term = str(term)
|
term = str(term)
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="deemix",
|
name="deemix",
|
||||||
version="1.2.14",
|
version="1.2.15",
|
||||||
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",
|
||||||
|
|
Loading…
Reference in New Issue