summaryrefslogtreecommitdiff
path: root/numpy/distutils/exec_command.py
diff options
context:
space:
mode:
authorOndrej Certik <ondrej.certik@gmail.com>2013-03-07 16:10:27 +0100
committerOndrej Certik <ondrej.certik@gmail.com>2013-03-07 16:10:27 +0100
commit6c6194a42cd0b5f47cfa7d43d7ae71c6b5e5ae84 (patch)
treee0a493219e265b577d0965fafc4cf55f60eef88a /numpy/distutils/exec_command.py
parent7c3b6dd33ec8bee517f1333e1dd0d4fb7078d01c (diff)
downloadnumpy-6c6194a42cd0b5f47cfa7d43d7ae71c6b5e5ae84.tar.gz
PEP8: don't use \
Diffstat (limited to 'numpy/distutils/exec_command.py')
-rw-r--r--numpy/distutils/exec_command.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/exec_command.py b/numpy/distutils/exec_command.py
index c6635b6e0..41f156c58 100644
--- a/numpy/distutils/exec_command.py
+++ b/numpy/distutils/exec_command.py
@@ -208,8 +208,8 @@ def exec_command( command,
# _exec_command_posix uses os.system and is faster
# but not on all platforms os.system will return
# a correct status.
- if _with_python and _supports_fileno(sys.stdout) and \
- sys.stdout.fileno() == -1:
+ if (_with_python and _supports_fileno(sys.stdout) and
+ sys.stdout.fileno() == -1):
st = _exec_command_python(command,
exec_command_dir = exec_dir,
**env)