diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-07-11 10:44:56 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-07-11 10:44:56 +0200 |
commit | fc040bfd058202b0b8c9f69b12e3a2d32e8f380c (patch) | |
tree | 5aa6a41d27fb98060564f544ba81a3ae409b0987 /youtube_dl/jsinterp.py | |
parent | c8bf86d50d65ac434c7d683c21ec4d362f0cf030 (diff) |
[jsinterp] Prevent mis-recognitions of local functions
Diffstat (limited to 'youtube_dl/jsinterp.py')
-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 d7e76713f..3bbb07704 100644 --- a/youtube_dl/jsinterp.py +++ b/youtube_dl/jsinterp.py @@ -99,7 +99,7 @@ class JSInterpreter(object): def extract_function(self, funcname): func_m = re.search( - (r'(?:function %s|%s\s*=\s*function)' % ( + (r'(?:function %s|[{;]%s\s*=\s*function)' % ( re.escape(funcname), re.escape(funcname))) + r'\((?P<args>[a-z,]+)\){(?P<code>[^}]+)}', self.code) |