This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
youtube-dl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1.1k
Wiki
Activity
Browse Source
[jsinterp] Do not expect dot in simple function call
totalwebcasting
Philipp Hagemeister
10 years ago
parent
7272eab9d0
commit
892e3192fb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
youtube_dl/jsinterp.py
+ 1
- 1
youtube_dl/jsinterp.py
View File
@ -130,7 +130,7 @@ class JSInterpreter(object):
return
a
%
b
m
=
re
.
match
(
r
'
^(?P<func>[
.
a-zA-Z$]+)
\
((?P<args>[a-z0-9,]+)
\
)$
'
,
expr
)
r
'
^(?P<func>[a-zA-Z$]+)
\
((?P<args>[a-z0-9,]+)
\
)$
'
,
expr
)
if
m
:
fname
=
m
.
group
(
'
func
'
)
argvals
=
tuple
(
[
Write
Preview
Loading…
Cancel
Save