From 9095e97c6a9f6d794006ed9fe6f06fc005403133 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Mon, 26 Jan 2015 07:08:36 -0800 Subject: [PATCH] Parenthesis mean we can get rid of line continuation markers --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2ccef8d552..e855ea3bfa 100644 --- a/setup.py +++ b/setup.py @@ -9,8 +9,9 @@ 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',