From e7ee9ddc0a655575e240a570e240f8957687c883 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 28 Oct 2014 20:41:51 -0400 Subject: [PATCH] Add the python3 compat header --- v2/scripts/ansible | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/v2/scripts/ansible b/v2/scripts/ansible index 1f84012e014..ae8ccff5952 100644 --- a/v2/scripts/ansible +++ b/v2/scripts/ansible @@ -14,3 +14,7 @@ # # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . + +# Make coding more python3-ish +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type