Fix credentials.json not being saved in CREDENTIALS_LOCATION path

This commit is contained in:
Mike Schwörer 2021-11-22 14:33:10 +01:00
parent 45f276013f
commit c42b8131d1
No known key found for this signature in database
GPG Key ID: D3C7172E0A70F8CF
1 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,8 @@ class ZSpotify:
user_name = input('Username: ')
password = getpass()
try:
cls.SESSION = Session.Builder().user_pass(user_name, password).create()
conf = Session.Configuration.Builder().set_stored_credential_file(cred_location).build()
cls.SESSION = Session.Builder(conf).user_pass(user_name, password).create()
return
except RuntimeError:
pass