aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/vimple.py
diff options
context:
space:
mode:
authorAriset Llerena <irtusb@gmail.com>2014-06-12 22:33:50 -0400
committerAriset Llerena <irtusb@gmail.com>2014-06-12 22:33:50 -0400
commitcb437dc2ad41122f1a08595a0829b4d929ddd580 (patch)
treee5849e1d82c3774fabfe36c4071e0a16e74bb0b5 /youtube_dl/extractor/vimple.py
parent0d933b2ad57563b70d725ce03fe0e79c4d84c99e (diff)
downloadyoutube-dl-cb437dc2ad41122f1a08595a0829b4d929ddd580.zip
youtube-dl-cb437dc2ad41122f1a08595a0829b4d929ddd580.tar.gz
youtube-dl-cb437dc2ad41122f1a08595a0829b4d929ddd580.tar.bz2
removed extra char in regexp
Diffstat (limited to 'youtube_dl/extractor/vimple.py')
-rw-r--r--youtube_dl/extractor/vimple.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vimple.py b/youtube_dl/extractor/vimple.py
index 0f69e71..a2f93af 100644
--- a/youtube_dl/extractor/vimple.py
+++ b/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)