From f7d93251f9daeb7812134facd5cc208ca880bdf4 Mon Sep 17 00:00:00 2001 From: artyshko Date: Sat, 16 Mar 2019 02:38:16 +0200 Subject: [PATCH] hotfix --- spotify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spotify.py b/spotify.py index 5609aae..93f182b 100755 --- a/spotify.py +++ b/spotify.py @@ -116,7 +116,7 @@ def __getRefreshToken(self): def __getData(self): try: - with open('.spotify_data.secret', 'rb') as f: + with open('.spotify', 'rb') as f: data = pickle.load(f) self.__client_id = data['client_id'] @@ -189,7 +189,7 @@ def __init__(self): def __getData(self): try: - with open('.spotify_data.secret', 'rb') as f: + with open('.spotify', 'rb') as f: data = pickle.load(f) self.__client_id = data['client_id']