mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-04 10:02:48 +01:00
[jsinterp] Correct div command
This commit is contained in:
parent
04edb9caf5
commit
8cfb6efe6f
@ -17,7 +17,7 @@ _OPERATORS = [
|
||||
('-', operator.sub),
|
||||
('+', operator.add),
|
||||
('%', operator.mod),
|
||||
('/', operator.div),
|
||||
('/', operator.truediv),
|
||||
('*', operator.mul),
|
||||
]
|
||||
_ASSIGN_OPERATORS = [(op + '=', opfunc) for op, opfunc in _OPERATORS]
|
||||
|
Loading…
Reference in New Issue
Block a user