Skip to content

Commit f7d9325

Browse files
committed
hotfix
1 parent e02c4fb commit f7d9325

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spotify.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def __getRefreshToken(self):
116116
def __getData(self):
117117
try:
118118

119-
with open('.spotify_data.secret', 'rb') as f:
119+
with open('.spotify', 'rb') as f:
120120
data = pickle.load(f)
121121

122122
self.__client_id = data['client_id']
@@ -189,7 +189,7 @@ def __init__(self):
189189
def __getData(self):
190190
try:
191191

192-
with open('.spotify_data.secret', 'rb') as f:
192+
with open('.spotify', 'rb') as f:
193193
data = pickle.load(f)
194194

195195
self.__client_id = data['client_id']

0 commit comments

Comments
 (0)