Skip to content

Commit b9b5f39

Browse files
fix client initialization in core.py
1 parent 3821ce4 commit b9b5f39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def read_file(fname):
1717

1818
setup(
1919
name=pkg_name,
20-
version="0.1.1.8",
20+
version="0.1.1.9",
2121
author="Akash R Chandran",
2222
author_email="chandranrakash@gmail.com",
2323
description="A command line tool to fetch lyrics from spotify and save it to lrc file. It can fetch both synced and unsynced lyrics from spotify. ",

syrics/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def initial_checks():
148148
raise CorruptedConfig("Config file seems corrupted, run syrics -c reset") from e
149149
config['download_path'] = directory or config['download_path']
150150
config['force_download'] = force or config['force_download']
151-
client = Spocleattify(config['sp_dc'])
151+
client = Spotify(config['sp_dc'])
152152
if cmd_url == 'current':
153153
cmd_url = client.get_current_song( )['item']['external_urls']['spotify']
154154
elif cmd_url == 'play':

0 commit comments

Comments
 (0)