projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d933b2
)
removed extra char in regexp
author
Ariset Llerena
<irtusb@gmail.com>
Fri, 13 Jun 2014 02:33:50 +0000
(22:33 -0400)
committer
Ariset Llerena
<irtusb@gmail.com>
Fri, 13 Jun 2014 02:33:50 +0000
(22:33 -0400)
youtube_dl/extractor/vimple.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/vimple.py
b/youtube_dl/extractor/vimple.py
index 0f69e7126c727f0e12ec53b79cac11e99abdc228..a2f93afe3cc98e29c0f25229f4c1a9089ca27fec 100644
(file)
--- 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)