1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 19:49:33 +00: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 @@ _OPERATORS = [
('-', operator.sub),
('+', operator.add),
('%', operator.mod),
('/', operator.div),
('/', operator.truediv),
('*', operator.mul),
]
_ASSIGN_OPERATORS = [(op + '=', opfunc) for op, opfunc in _OPERATORS]