From 03efbfca2992b9e91b607f766dfb3e2f7a89e8fe Mon Sep 17 00:00:00 2001 From: James Laska Date: Thu, 17 Jul 2014 08:57:26 -0400 Subject: [PATCH] Correct string concatenation error --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f1a7a30a26a..2323afa458c 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from ansible import __version__, __author__ try: from setuptools import setup except ImportError: - print "Ansible now needs setuptools in order to build. " + \ + 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)