[jsinterp] Correct div command

This commit is contained in:
Philipp Hagemeister 2015-02-02 01:49:32 +01:00
parent 04edb9caf5
commit 8cfb6efe6f
1 changed files with 1 additions and 1 deletions

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]