From 63ce5df83303380dab8b81a557fa9a8314d3ad5e Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Sat, 12 Jul 2014 01:56:37 +0200 Subject: PEP-8 fixes pointed out by Travis CI --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 64e31cae..145854a8 100644 --- a/setup.py +++ b/setup.py @@ -158,14 +158,15 @@ def keywords_with_side_effects(argv): - ``python setup.py clean`` - ``python setup.py egg_info`` - This function is based on the `setup.py script of SciPy`_ (see also the + This function is based on the `setup.py script`_ of SciPy (see also the discussion in `pip issue #25`_). .. _pip issue #25: https://github.com/pypa/pip/issues/25 - .. _setup.py script of SciPy: https://github.com/scipy/scipy/blob/master/setup.py + .. _setup.py script: https://github.com/scipy/scipy/blob/master/setup.py """ if len(argv) >= 2 and ('--help' in argv[1:] or - argv[1] in ('--help-commands', '--version', 'clean', 'egg_info')): + argv[1] in ('--help-commands', '--version', + 'clean', 'egg_info')): return {} else: return { -- cgit v1.2.3