Fix setup.py entry point

This commit is contained in:
Linus Groh
2018-04-17 14:10:50 +02:00
parent 8b54dc5e88
commit 678068c4fe
2 changed files with 2 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ setup(
],
entry_points={
'console_scripts': [
'spotdl = spotdl:cli',
'spotdl = spotdl:main',
],
}
)

View File

@@ -16,7 +16,7 @@ import time
import platform
import pprint
__version__ = '0.9.1'
__version__ = '0.9.2'
def check_exists(music_file, raw_song, meta_tags):