Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
artyshko committed Mar 16, 2019
1 parent e02c4fb commit f7d9325
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spotify.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down Expand Up @@ -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']
Expand Down

0 comments on commit f7d9325

Please sign in to comment.