Commit 3102e1ec by Toshio Kuratomi

Merge pull request #10096 from gilou/devel

Make setup.py work with Python 3 (and requiring 2.6)
parents 53a3644e ee448493
......@@ -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',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment