diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 29572185..c7df13e3 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -4090,6 +4090,7 @@ def calculate_math_string(expr): ast.Mult: operator.mul, ast.Sub: operator.sub, ast.USub: operator.neg, + ast.Pow: operator.pow, } def execute_ast(node):