mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-12-08 20:39:08 +00:00
decode song names using utf-8
This commit is contained in:
@@ -35,7 +35,7 @@ def Main():
|
|||||||
os.remove('Music/' + m)
|
os.remove('Music/' + m)
|
||||||
print('')
|
print('')
|
||||||
print('')
|
print('')
|
||||||
raw_song = raw_input('>> Enter a song/cmd: ').encode('utf-8')
|
raw_song = raw_input('>> Enter a song/cmd: ').decode('utf-8').encode('utf-8')
|
||||||
print ''
|
print ''
|
||||||
if raw_song == "exit":
|
if raw_song == "exit":
|
||||||
exit()
|
exit()
|
||||||
|
|||||||
Reference in New Issue
Block a user