diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2009-04-16 17:32:23 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2009-04-16 17:32:23 +0000 |
commit | 37abe7a2f64dbd5dffee0d5abd5784b15191d9a5 (patch) | |
tree | 665e1faacc77c8138b3f74648d2e27ba74ec4a28 /numpy/distutils/misc_util.py | |
parent | 9c5ec967cf50b3c498980650bf6a132b1516171a (diff) | |
download | numpy-37abe7a2f64dbd5dffee0d5abd5784b15191d9a5.tar.gz |
Remove tabs and unnecessary whitespace.
Diffstat (limited to 'numpy/distutils/misc_util.py')
-rw-r--r-- | numpy/distutils/misc_util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index c027b6c6c..210342dc0 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -1636,8 +1636,8 @@ def msvc_version(compiler): """Return version major and minor of compiler instance if it is MSVC, raise an exception otherwise.""" if not compiler.compiler_type == "msvc": - raise ValueError("Compiler instance is not msvc (%s)"\ - % compiler.compiler_type) + raise ValueError("Compiler instance is not msvc (%s)"\ + % compiler.compiler_type) return compiler._MSVCCompiler__version if sys.version[:3] >= '2.5': |