mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 08:47:06 -05:00 
			
		
		
		
	[jsinterp] Correct div command
This commit is contained in:
		@@ -17,7 +17,7 @@ _OPERATORS = [
 | 
				
			|||||||
    ('-', operator.sub),
 | 
					    ('-', operator.sub),
 | 
				
			||||||
    ('+', operator.add),
 | 
					    ('+', operator.add),
 | 
				
			||||||
    ('%', operator.mod),
 | 
					    ('%', operator.mod),
 | 
				
			||||||
    ('/', operator.div),
 | 
					    ('/', operator.truediv),
 | 
				
			||||||
    ('*', operator.mul),
 | 
					    ('*', operator.mul),
 | 
				
			||||||
]
 | 
					]
 | 
				
			||||||
_ASSIGN_OPERATORS = [(op + '=', opfunc) for op, opfunc in _OPERATORS]
 | 
					_ASSIGN_OPERATORS = [(op + '=', opfunc) for op, opfunc in _OPERATORS]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user