From ee448493d73511d0847e8826705b4079717fb60e Mon Sep 17 00:00:00 2001 From: Gilles Pietri Date: Mon, 26 Jan 2015 14:12:35 +0100 Subject: [PATCH] Make setup.py work with Python 3 (and requiring 2.6) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d4ac0c3d4d2..2ccef8d552f 100644 --- a/setup.py +++ b/setup.py @@ -9,8 +9,8 @@ from ansible import __version__, __author__ try: from setuptools import setup, find_packages except ImportError: - print "Ansible now needs setuptools in order to build. " \ - "Install it using your package manager (usually python-setuptools) or via pip (pip install setuptools)." + print("Ansible now needs setuptools in order to build. " \ + "Install it using your package manager (usually python-setuptools) or via pip (pip install setuptools).") sys.exit(1) setup(name='ansible',