1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-27 19:55:26 +02:00

[jsinterp] Correct div command

This commit is contained in:
Philipp Hagemeister 2015-02-02 01:49:32 +01:00
parent 04edb9caf5
commit 8cfb6efe6f

View File

@ -17,7 +17,7 @@
('-', operator.sub),
('+', operator.add),
('%', operator.mod),
('/', operator.div),
('/', operator.truediv),
('*', operator.mul),
]
_ASSIGN_OPERATORS = [(op + '=', opfunc) for op, opfunc in _OPERATORS]