diff options
author | tinybug <tinybug1991@gmail.com> | 2014-11-21 17:09:22 +0800 |
---|---|---|
committer | tinybug <tinybug1991@gmail.com> | 2014-11-21 17:09:22 +0800 |
commit | 85b9275517869bb7fb150ff65b9021ca49009b8b (patch) | |
tree | 6a93b751c46015c027984432e8430d36bf60aff7 | |
parent | dfd5313afdf00250d9b8a4e103bd7647713f1af3 (diff) |
Update jsinterp.py
http://s.ytimg.com/yts/jsbin/html5player-zh_HK-vfl1NK6PR/html5player.js
fix raise ExtractorError
-rw-r--r-- | youtube_dl/jsinterp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/jsinterp.py b/youtube_dl/jsinterp.py index c40cd376d..b4617fbad 100644 --- a/youtube_dl/jsinterp.py +++ b/youtube_dl/jsinterp.py @@ -61,7 +61,7 @@ class JSInterpreter(object): pass m = re.match( - r'^(?P<var>[a-zA-Z0-9_]+)\.(?P<member>[^(]+)(?:\(+(?P<args>[^()]*)\))?$', + r'^(?P<var>[$a-zA-Z0-9_]+)\.(?P<member>[^(]+)(?:\(+(?P<args>[^()]*)\))?$', expr) if m: variable = m.group('var') |