diff options
author | Ariset Llerena <irtusb@gmail.com> | 2014-06-12 22:33:50 -0400 |
---|---|---|
committer | Ariset Llerena <irtusb@gmail.com> | 2014-06-12 22:33:50 -0400 |
commit | cb437dc2ad41122f1a08595a0829b4d929ddd580 (patch) | |
tree | e5849e1d82c3774fabfe36c4071e0a16e74bb0b5 /youtube_dl/extractor | |
parent | 0d933b2ad57563b70d725ce03fe0e79c4d84c99e (diff) |
removed extra char in regexp
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/vimple.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vimple.py b/youtube_dl/extractor/vimple.py index 0f69e7126..a2f93afe3 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) |