[jsinterp] Correct div command

pull/8/head
Philipp Hagemeister 2015-02-02 01:49:32 +01:00
rodzic 04edb9caf5
commit 8cfb6efe6f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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]