mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-21 20:46:36 -05:00
[jsinterp] Allow uppercase object names
This commit is contained in:
parent
b081cebefa
commit
16f8e9df8a
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ def interpret_expression(self, expr, local_vars, allow_recursion):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
m = re.match(
|
m = re.match(
|
||||||
r'^(?P<var>[a-z]+)\.(?P<member>[^(]+)(?:\(+(?P<args>[^()]*)\))?$',
|
r'^(?P<var>[a-zA-Z0-9_]+)\.(?P<member>[^(]+)(?:\(+(?P<args>[^()]*)\))?$',
|
||||||
expr)
|
expr)
|
||||||
if m:
|
if m:
|
||||||
variable = m.group('var')
|
variable = m.group('var')
|
||||||
|
|
Loading…
Reference in a new issue