mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 02:01:50 +00:00
[jsinterp] Fix slice
This commit is contained in:
parent
4bc7009e8a
commit
4cb71e9b6a
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ class JSInterpreter(object):
|
||||||
index, howMany = argvals
|
index, howMany = argvals
|
||||||
res = []
|
res = []
|
||||||
for i in range(index, min(index + howMany, len(obj))):
|
for i in range(index, min(index + howMany, len(obj))):
|
||||||
res.append(obj.pop(i))
|
res.append(obj.pop(index))
|
||||||
return res
|
return res
|
||||||
|
|
||||||
return obj[member](argvals)
|
return obj[member](argvals)
|
||||||
|
|
Loading…
Reference in a new issue