From 2664de55fb7bd36459575acd62762d3ae4155ea7 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 16 Dec 2014 16:59:22 -0800 Subject: [PATCH] Fix math filters --- lib/ansible/runner/filter_plugins/math.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ansible/runner/filter_plugins/math.py b/lib/ansible/runner/filter_plugins/math.py index d069fbd3919..7f6cc195556 100644 --- a/lib/ansible/runner/filter_plugins/math.py +++ b/lib/ansible/runner/filter_plugins/math.py @@ -15,6 +15,8 @@ # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . +from __future__ import absolute_import + import math from ansible import errors