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

View File

@@ -49,7 +49,8 @@ class ZSpotify:
user_name = input('Username: ') user_name = input('Username: ')
password = getpass() password = getpass()
try: 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 return
except RuntimeError: except RuntimeError:
pass pass