1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-25 00:38:03 +02:00

[jsinterp] Allow uppercase object names

This commit is contained in:
Philipp Hagemeister 2014-07-25 06:54:52 +02:00
parent b081cebefa
commit 16f8e9df8a

View File

@ -61,7 +61,7 @@ def interpret_expression(self, expr, local_vars, allow_recursion):
pass
m = re.match(
r'^(?P<var>[a-z]+)\.(?P<member>[^(]+)(?:\(+(?P<args>[^()]*)\))?$',
r'^(?P<var>[a-zA-Z0-9_]+)\.(?P<member>[^(]+)(?:\(+(?P<args>[^()]*)\))?$',
expr)
if m:
variable = m.group('var')