Explorar o código

removed extra char in regexp

Ariset Llerena %!s(int64=11) %!d(string=hai) anos
pai
achega
cb437dc2ad
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      youtube_dl/extractor/vimple.py

+ 1 - 1
youtube_dl/extractor/vimple.py

@@ -40,7 +40,7 @@ class VimpleIE(InfoExtractor):
         player = zlib.decompress(player[8:])
 
 
-        xml_pieces = re.findall(b'([a-zA-Z0-9 =\\+/]{500})', player)
+        xml_pieces = re.findall(b'([a-zA-Z0-9 =+/]{500})', player)
         xml_pieces = [piece[1:-1] for piece in xml_pieces]
         
         xml_data = b''.join(xml_pieces)