diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-07-28 04:08:05 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-07-28 04:08:05 +0000 |
commit | 444891fc56cdc07a66ecce5c8837ae9578c94280 (patch) | |
tree | e247ea23e2a837e2a589a906c2a107829c5b22d1 /numpy/distutils/system_info.py | |
parent | 1bb62100df7ab50cee97d607d497147e0e416cea (diff) | |
download | numpy-444891fc56cdc07a66ecce5c8837ae9578c94280.tar.gz |
Typo
Diffstat (limited to 'numpy/distutils/system_info.py')
-rw-r--r-- | numpy/distutils/system_info.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index cd4c2996e..6cd6cc84b 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1086,8 +1086,7 @@ def get_atlas_version(**config): if _cached_atlas_version.has_key(key): return _cached_atlas_version[key] c = cmd_config(Distribution()) - atlas_version = None - + atlas_version = None try: s, o = c.get_output(atlas_version_c_text, libraries=libraries, library_dirs=library_dirs) @@ -1101,8 +1100,8 @@ def get_atlas_version(**config): break # final choice --- look at ATLAS_VERSION environment # variable - if altas_version is None: - altas_version = os.environ.get('ATLAS_VERSION',None) + if atlas_version is None: + atlas_version = os.environ.get('ATLAS_VERSION',None) return atlas_version or '?.?.?' if not s: |