mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-12-08 20:39:08 +00:00
Fix windows specific encoding errors
This commit is contained in:
@@ -135,7 +135,7 @@ def filter_path(path):
|
|||||||
os.makedirs(path)
|
os.makedirs(path)
|
||||||
for temp in os.listdir(path):
|
for temp in os.listdir(path):
|
||||||
if temp.endswith('.temp'):
|
if temp.endswith('.temp'):
|
||||||
os.remove(u'{0}/{1}'.format(path, temp))
|
os.remove('{0}/{1}'.format(path, temp))
|
||||||
|
|
||||||
|
|
||||||
def grace_quit():
|
def grace_quit():
|
||||||
|
|||||||
Reference in New Issue
Block a user