diff options
author | Jarrod Millman <millman@berkeley.edu> | 2008-09-02 20:32:38 +0000 |
---|---|---|
committer | Jarrod Millman <millman@berkeley.edu> | 2008-09-02 20:32:38 +0000 |
commit | d29107a248130bbb68ecac58d6720d716529141c (patch) | |
tree | 9e1408025c80d63fe9fa6151343a7b265ec3f654 /numpy/distutils/command/scons.py | |
parent | a4a7966cf7191c28a7054127fd3717d6c760d556 (diff) | |
download | numpy-d29107a248130bbb68ecac58d6720d716529141c.tar.gz |
reindenting prior to release
Diffstat (limited to 'numpy/distutils/command/scons.py')
-rw-r--r-- | numpy/distutils/command/scons.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/distutils/command/scons.py b/numpy/distutils/command/scons.py index e183f001b..d0792be5d 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -287,11 +287,11 @@ class scons(old_build_ext): self.post_hooks = [] self.pkg_names = [] - # To avoid trouble, just don't do anything if no sconscripts are used. - # This is useful when for example f2py uses numpy.distutils, because - # f2py does not pass compiler information to scons command, and the - # compilation setup below can crash in some situation. - if len(self.sconscripts) > 0: + # To avoid trouble, just don't do anything if no sconscripts are used. + # This is useful when for example f2py uses numpy.distutils, because + # f2py does not pass compiler information to scons command, and the + # compilation setup below can crash in some situation. + if len(self.sconscripts) > 0: # Try to get the same compiler than the ones used by distutils: this is # non trivial because distutils and scons have totally different # conventions on this one (distutils uses PATH from user's environment, |