use urllib to un-escape quotes
This commit is contained in:
@@ -8,7 +8,7 @@ import mutagen.id3
|
||||
from mutagen.id3 import ID3, TIT2, TIT3, TALB, TRCK, TYER
|
||||
import os
|
||||
from shutil import copyfile
|
||||
from urllib import unquote
|
||||
import urllib
|
||||
import xml.etree.cElementTree as xml
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ def copy_file(track: Track, targetFolder) -> str:
|
||||
"""
|
||||
Copies a track from its source to the destination folder
|
||||
"""
|
||||
path = unquote(track.Location[7:])
|
||||
path = urllib.parse.unquote(track.Location[7:])
|
||||
dst = os.path.join(targetFolder, os.path.basename(path))
|
||||
if (os.path.exists(path)):
|
||||
print('Copying file {0}'.format(path))
|
||||
|
||||
Reference in New Issue
Block a user