Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Alberto Sottile 2018-06-09 17:05:08 +02:00
commit 112de62f8b

View File

@ -145,7 +145,7 @@ class VlcPlayer(BasePlayer):
def getMRL(self, fileURL):
if utils.isURL(fileURL):
fileURL = fileURL.encode('utf8')
fileURL = urllib.quote(fileURL, safe="%/:=&?~#+!$,;'@()*[]")
fileURL = urllib.quote(fileURL, safe="%/:=&?~#+!$,;'@()*")
return fileURL
fileURL = fileURL.replace(u'\\', u'/')